Home
last modified time | relevance | path

Searched refs:oh_cnt (Results 1 – 2 of 2) sorted by relevance

/linux-5.19.10/arch/arm/mach-omap2/
Domap_device.c133 int oh_cnt, i, ret = 0; in omap_device_build_from_dt() local
136 oh_cnt = of_property_count_strings(node, "ti,hwmods"); in omap_device_build_from_dt()
137 if (oh_cnt <= 0) { in omap_device_build_from_dt()
153 hwmods = kcalloc(oh_cnt, sizeof(struct omap_hwmod *), GFP_KERNEL); in omap_device_build_from_dt()
159 for (i = 0; i < oh_cnt; i++) { in omap_device_build_from_dt()
173 od = omap_device_alloc(pdev, hwmods, oh_cnt); in omap_device_build_from_dt()
328 struct omap_hwmod **ohs, int oh_cnt) in omap_device_alloc() argument
339 od->hwmods_cnt = oh_cnt; in omap_device_alloc()
341 hwmods = kmemdup(ohs, sizeof(struct omap_hwmod *) * oh_cnt, GFP_KERNEL); in omap_device_alloc()
349 for (i = 0; i < oh_cnt; i++) { in omap_device_alloc()
Domap_device.h72 struct omap_hwmod **ohs, int oh_cnt);