Home
last modified time | relevance | path

Searched refs:init_fn (Results 1 – 9 of 9) sorted by relevance

/linux-6.15/drivers/perf/
H A Darm_pmu_platform.c190 armpmu_init_fn init_fn; in arm_pmu_device_probe() local
206 init_fn = of_device_get_match_data(dev); in arm_pmu_device_probe()
207 if (init_fn) { in arm_pmu_device_probe()
217 ret = init_fn(pmu); in arm_pmu_device_probe()
H A Darm_pmu_acpi.c352 int arm_pmu_acpi_probe(armpmu_init_fn init_fn) in arm_pmu_acpi_probe() argument
402 ret = init_fn(pmu); in arm_pmu_acpi_probe()
/linux-6.15/arch/loongarch/kernel/
H A Dsmp.c430 register void (*init_fn)(void); in idle_play_dead() local
444 init_fn = (void *)TO_CACHE(addr); in idle_play_dead()
447 init_fn(); in idle_play_dead()
455 register void (*init_fn)(void); in poll_play_dead() local
466 init_fn = (void *)TO_CACHE(addr); in poll_play_dead()
469 init_fn(); in poll_play_dead()
/linux-6.15/drivers/video/backlight/
H A Dhx8357.c574 hx8357_init_fn init_fn; in hx8357_probe() local
587 init_fn = device_get_match_data(dev); in hx8357_probe()
588 if (!init_fn) in hx8357_probe()
616 ret = init_fn(lcdev); in hx8357_probe()
/linux-6.15/include/linux/perf/
H A Darm_pmu.h168 int arm_pmu_acpi_probe(armpmu_init_fn init_fn);
170 static inline int arm_pmu_acpi_probe(armpmu_init_fn init_fn) { return 0; } in arm_pmu_acpi_probe() argument
/linux-6.15/drivers/firmware/psci/
H A Dpsci.c802 psci_initcall_t init_fn; in psci_dt_init() local
810 init_fn = (psci_initcall_t)matched_np->data; in psci_dt_init()
811 ret = init_fn(np); in psci_dt_init()
/linux-6.15/fs/xfs/libxfs/
H A Dxfs_bmap.h185 void (*init_fn)(struct xfs_trans *tp, struct xfs_buf *bp,
H A Dxfs_bmap.c788 void (*init_fn)(struct xfs_trans *tp, in xfs_bmap_local_to_extents()
853 init_fn(tp, bp, ip, ifp, priv); in xfs_bmap_local_to_extents()
/linux-6.15/tools/perf/scripts/python/
H A Dexported-sql-viewer.py2402 def __init__(self, glb, title, init_fn): argument
2403 self.init_fn = init_fn
2423 self.result = self.init_fn(db)
2433 def SlowInit(glb, title, init_fn): argument
2434 init = SlowInitClass(glb, title, init_fn)