Home
last modified time | relevance | path

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

/linux/drivers/perf/
H A Darm_pmu_platform.c192 armpmu_init_fn init_fn; in arm_pmu_device_probe() local
208 init_fn = of_device_get_match_data(dev); in arm_pmu_device_probe()
209 if (init_fn) { in arm_pmu_device_probe()
219 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/arch/loongarch/kernel/
H A Dsmp.c479 register void (*init_fn)(void); in idle_play_dead() local
493 init_fn = (void *)TO_CACHE(addr); in idle_play_dead()
496 init_fn(); in idle_play_dead()
504 register void (*init_fn)(void); in poll_play_dead() local
515 init_fn = (void *)TO_CACHE(addr); in poll_play_dead()
518 init_fn(); in poll_play_dead()
/linux/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/include/linux/perf/
H A Darm_pmu.h175 int arm_pmu_acpi_probe(armpmu_init_fn init_fn);
177 static inline int arm_pmu_acpi_probe(armpmu_init_fn init_fn) { return 0; } in arm_pmu_acpi_probe() argument
/linux/drivers/firmware/psci/
H A Dpsci.c802 psci_initcall_t init_fn; in psci_dt_init() local
812 init_fn = (psci_initcall_t)matched_np->data; in psci_dt_init()
813 ret = init_fn(np); in psci_dt_init()
/linux/fs/xfs/libxfs/
H A Dxfs_bmap.h189 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/tools/perf/scripts/python/
H A Dexported-sql-viewer.py2405 def __init__(self, glb, title, init_fn): argument
2406 self.init_fn = init_fn
2426 self.result = self.init_fn(db)
2436 def SlowInit(glb, title, init_fn): argument
2437 init = SlowInitClass(glb, title, init_fn)