Searched refs:full_name (Results 1 - 200 of 303) sorted by relevance

12

/linux-4.1.27/fs/9p/
H A Dxattr_security.c26 char *full_name; v9fs_xattr_security_get() local
37 full_name = kmalloc(prefix_len + name_len + 1 , GFP_KERNEL); v9fs_xattr_security_get()
38 if (!full_name) v9fs_xattr_security_get()
40 memcpy(full_name, XATTR_SECURITY_PREFIX, prefix_len); v9fs_xattr_security_get()
41 memcpy(full_name+prefix_len, name, name_len); v9fs_xattr_security_get()
42 full_name[prefix_len + name_len] = '\0'; v9fs_xattr_security_get()
44 retval = v9fs_xattr_get(dentry, full_name, buffer, size); v9fs_xattr_security_get()
45 kfree(full_name); v9fs_xattr_security_get()
53 char *full_name; v9fs_xattr_security_set() local
64 full_name = kmalloc(prefix_len + name_len + 1 , GFP_KERNEL); v9fs_xattr_security_set()
65 if (!full_name) v9fs_xattr_security_set()
67 memcpy(full_name, XATTR_SECURITY_PREFIX, prefix_len); v9fs_xattr_security_set()
68 memcpy(full_name + prefix_len, name, name_len); v9fs_xattr_security_set()
69 full_name[prefix_len + name_len] = '\0'; v9fs_xattr_security_set()
71 retval = v9fs_xattr_set(dentry, full_name, value, size, flags); v9fs_xattr_security_set()
72 kfree(full_name); v9fs_xattr_security_set()
H A Dxattr_trusted.c26 char *full_name; v9fs_xattr_trusted_get() local
37 full_name = kmalloc(prefix_len + name_len + 1 , GFP_KERNEL); v9fs_xattr_trusted_get()
38 if (!full_name) v9fs_xattr_trusted_get()
40 memcpy(full_name, XATTR_TRUSTED_PREFIX, prefix_len); v9fs_xattr_trusted_get()
41 memcpy(full_name+prefix_len, name, name_len); v9fs_xattr_trusted_get()
42 full_name[prefix_len + name_len] = '\0'; v9fs_xattr_trusted_get()
44 retval = v9fs_xattr_get(dentry, full_name, buffer, size); v9fs_xattr_trusted_get()
45 kfree(full_name); v9fs_xattr_trusted_get()
53 char *full_name; v9fs_xattr_trusted_set() local
64 full_name = kmalloc(prefix_len + name_len + 1 , GFP_KERNEL); v9fs_xattr_trusted_set()
65 if (!full_name) v9fs_xattr_trusted_set()
67 memcpy(full_name, XATTR_TRUSTED_PREFIX, prefix_len); v9fs_xattr_trusted_set()
68 memcpy(full_name + prefix_len, name, name_len); v9fs_xattr_trusted_set()
69 full_name[prefix_len + name_len] = '\0'; v9fs_xattr_trusted_set()
71 retval = v9fs_xattr_set(dentry, full_name, value, size, flags); v9fs_xattr_trusted_set()
72 kfree(full_name); v9fs_xattr_trusted_set()
H A Dxattr_user.c26 char *full_name; v9fs_xattr_user_get() local
37 full_name = kmalloc(prefix_len + name_len + 1 , GFP_KERNEL); v9fs_xattr_user_get()
38 if (!full_name) v9fs_xattr_user_get()
40 memcpy(full_name, XATTR_USER_PREFIX, prefix_len); v9fs_xattr_user_get()
41 memcpy(full_name+prefix_len, name, name_len); v9fs_xattr_user_get()
42 full_name[prefix_len + name_len] = '\0'; v9fs_xattr_user_get()
44 retval = v9fs_xattr_get(dentry, full_name, buffer, size); v9fs_xattr_user_get()
45 kfree(full_name); v9fs_xattr_user_get()
53 char *full_name; v9fs_xattr_user_set() local
64 full_name = kmalloc(prefix_len + name_len + 1 , GFP_KERNEL); v9fs_xattr_user_set()
65 if (!full_name) v9fs_xattr_user_set()
67 memcpy(full_name, XATTR_USER_PREFIX, prefix_len); v9fs_xattr_user_set()
68 memcpy(full_name + prefix_len, name, name_len); v9fs_xattr_user_set()
69 full_name[prefix_len + name_len] = '\0'; v9fs_xattr_user_set()
71 retval = v9fs_xattr_set(dentry, full_name, value, size, flags); v9fs_xattr_user_set()
72 kfree(full_name); v9fs_xattr_user_set()
H A Dacl.c218 char *full_name; v9fs_remote_get_acl() local
222 full_name = POSIX_ACL_XATTR_ACCESS; v9fs_remote_get_acl()
225 full_name = POSIX_ACL_XATTR_DEFAULT; v9fs_remote_get_acl()
230 return v9fs_xattr_get(dentry, full_name, buffer, size); v9fs_remote_get_acl()
265 char *full_name; v9fs_remote_set_acl() local
269 full_name = POSIX_ACL_XATTR_ACCESS; v9fs_remote_set_acl()
272 full_name = POSIX_ACL_XATTR_DEFAULT; v9fs_remote_set_acl()
277 return v9fs_xattr_set(dentry, full_name, value, size, flags); v9fs_remote_set_acl()
/linux-4.1.27/drivers/clk/
H A Dclk-moxart.c31 pr_err("%s: of_iomap failed\n", node->full_name); moxart_of_pll_clk_init()
40 pr_err("%s: of_clk_get failed\n", node->full_name); moxart_of_pll_clk_init()
46 pr_err("%s: failed to register clock\n", node->full_name); moxart_of_pll_clk_init()
70 pr_err("%s: of_iomap failed\n", node->full_name); moxart_of_apb_clk_init()
83 pr_err("%s: of_clk_get failed\n", node->full_name); moxart_of_apb_clk_init()
89 pr_err("%s: failed to register clock\n", node->full_name); moxart_of_apb_clk_init()
H A Dclk-conf.c27 node->full_name); __set_clk_parents()
44 index, node->full_name); __set_clk_parents()
59 index, node->full_name); __set_clk_parents()
103 index, node->full_name); __set_clk_rates()
H A Dclk-xgene.c168 const char *clk_name = np->full_name; xgene_pllclk_init()
174 pr_err("Unable to map CSR register for %s\n", np->full_name); xgene_pllclk_init()
444 const char *clk_name = np->full_name; xgene_devclk_init()
464 np->full_name); xgene_devclk_init()
472 i, np->full_name); xgene_devclk_init()
508 np->full_name); xgene_devclk_init()
H A Dclkdev.c54 return __of_clk_get(np, index, np->full_name, NULL); of_clk_get()
81 np->full_name, name ? name : "", index); __of_clk_get_by_name()
112 return __of_clk_get_by_name(np, np->full_name, name); of_clk_get_by_name()
H A Dclk-asm9260.c335 np->full_name, n); asm9260_acc_init()
/linux-4.1.27/drivers/irqchip/
H A Dirq-digicolor.c82 pr_err("%s: unable to map IC registers\n", node->full_name); digicolor_of_init()
92 pr_err("%s: unable to map UC registers\n", node->full_name); digicolor_of_init()
101 pr_err("%s: unable to create IRQ domain\n", node->full_name); digicolor_of_init()
109 pr_err("%s: unable to allocate IRQ gc\n", node->full_name); digicolor_of_init()
H A Dirq-moxart.c71 node->full_name); moxart_of_intc_init()
78 pr_err("%s: unable to create IRQ domain\n", node->full_name); moxart_of_intc_init()
87 node->full_name); moxart_of_intc_init()
96 node->full_name); moxart_of_intc_init()
H A Dirq-dw-apb-ictl.c82 pr_err("%s: unable to parse irq\n", np->full_name); dw_apb_ictl_init()
88 pr_err("%s: unable to get resource\n", np->full_name); dw_apb_ictl_init()
92 if (!request_mem_region(r.start, resource_size(&r), np->full_name)) { dw_apb_ictl_init()
93 pr_err("%s: unable to request mem region\n", np->full_name); dw_apb_ictl_init()
99 pr_err("%s: unable to map resource\n", np->full_name); dw_apb_ictl_init()
126 pr_err("%s: unable to add irq domain\n", np->full_name); dw_apb_ictl_init()
136 pr_err("%s: unable to alloc irq domain gc\n", np->full_name); dw_apb_ictl_init()
H A Dirq-tegra.c304 pr_err("%s: no parent, giving up\n", node->full_name); tegra_ictlr_init()
310 pr_err("%s: unable to obtain parent domain\n", node->full_name); tegra_ictlr_init()
342 pr_err("%s: no valid regions, giving up\n", node->full_name); tegra_ictlr_init()
349 node->full_name, num_ictlrs, soc->num_ictlrs); tegra_ictlr_init()
356 pr_err("%s: failed to allocated domain\n", node->full_name); tegra_ictlr_init()
364 node->full_name, num_ictlrs * 32, parent->full_name); tegra_ictlr_init()
H A Dirq-sun4i.c103 node->full_name); sun4i_of_init()
129 panic("%s: unable to create IRQ domain\n", node->full_name); sun4i_of_init()
H A Dirq-crossbar.c338 pr_err("%s: no parent, giving up\n", node->full_name); irqcrossbar_init()
344 pr_err("%s: unable to obtain parent domain\n", node->full_name); irqcrossbar_init()
357 pr_err("%s: failed to allocated domain\n", node->full_name); irqcrossbar_init()
H A Dirq-bcm2835.c151 node->full_name); armctrl_of_init()
156 panic("%s: unable to create IRQ domain\n", node->full_name); armctrl_of_init()
H A Dirq-gic-v3-its.c877 its->msi_chip.of_node->full_name, order); its_alloc_tables()
949 its->msi_chip.of_node->full_name, i, its_alloc_tables()
1439 pr_warn("%s: no regs?\n", node->full_name); its_probe()
1445 pr_warn("%s: unable to map registers\n", node->full_name); its_probe()
1451 pr_warn("%s: no ITS detected, giving up\n", node->full_name); its_probe()
1459 node->full_name); its_probe()
1463 pr_info("ITS: %s\n", node->full_name); its_probe()
1563 pr_err("ITS: failed probing %s (%d)\n", node->full_name, err); its_probe()
H A Dirq-brcmstb-l2.c168 np->full_name, handle_edge_irq, clr, 0, flags); brcmstb_l2_intc_of_init()
H A Dirq-armada-370-xp.c593 node->full_name)); armada_370_xp_mpic_of_init()
596 node->full_name)); armada_370_xp_mpic_of_init()
H A Dirq-gic-v3.c802 node->full_name); gic_of_init()
809 node->full_name); gic_of_init()
831 node->full_name, i); gic_of_init()
H A Dirq-bcm7120-l2.c260 dn->full_name, handle_level_irq, clr, 0, flags); bcm7120_l2_intc_probe()
/linux-4.1.27/arch/powerpc/sysdev/
H A Dof_rtc.c42 node->full_name); for_each_compatible_node()
50 node->full_name); for_each_compatible_node()
55 node->full_name, plat_name, for_each_compatible_node()
H A Dfsl_85xx_cache_sram.c105 dev->dev.of_node->full_name); instantiate_cache_sram()
114 dev->dev.of_node->full_name); instantiate_cache_sram()
122 dev->dev.of_node->full_name); instantiate_cache_sram()
H A Dppc4xx_pci.c132 hose->dn->full_name, ppc4xx_parse_dma_ranges()
156 hose->dn->full_name); ppc4xx_parse_dma_ranges()
166 hose->dn->full_name, size, (u64)total_memory); ppc4xx_parse_dma_ranges()
174 hose->dn->full_name); ppc4xx_parse_dma_ranges()
185 hose->dn->full_name); ppc4xx_parse_dma_ranges()
237 hose->dn->full_name); ppc4xx_setup_one_pci_PMM()
270 hose->dn->full_name); ppc4xx_configure_pci_PMMs()
296 hose->dn->full_name); ppc4xx_configure_pci_PMMs()
337 np->full_name); ppc4xx_probe_pci_bridge()
344 np->full_name); ppc4xx_probe_pci_bridge()
350 np->full_name); ppc4xx_probe_pci_bridge()
364 printk(KERN_ERR "%s: Can't map registers !", np->full_name); ppc4xx_probe_pci_bridge()
427 hose->dn->full_name); ppc4xx_setup_one_pcix_POM()
471 hose->dn->full_name); ppc4xx_configure_pcix_POMs()
497 hose->dn->full_name); ppc4xx_configure_pcix_POMs()
543 np->full_name); ppc4xx_probe_pcix_bridge()
549 np->full_name); ppc4xx_probe_pcix_bridge()
571 printk(KERN_ERR "%s: Can't map registers !", np->full_name); ppc4xx_probe_pcix_bridge()
1250 port->node->full_name); ppc460sx_pciex_check_link()
1452 np->full_name); ppc4xx_pciex_check_core_init()
1734 hose->dn->full_name); ppc4xx_setup_one_pciex_POM()
1811 port->node->full_name); ppc4xx_configure_pciex_POMs()
1838 hose->dn->full_name); ppc4xx_configure_pciex_POMs()
1974 port->node->full_name); ppc4xx_pciex_port_setup_hose()
1986 port->node->full_name); ppc4xx_pciex_port_setup_hose()
1991 pr_debug("PCIE %s, bus %d..%d\n", port->node->full_name, ppc4xx_pciex_port_setup_hose()
2104 np->full_name); ppc4xx_probe_pciex_bridge()
2110 np->full_name); ppc4xx_probe_pciex_bridge()
2129 np->full_name); ppc4xx_probe_pciex_bridge()
2146 np->full_name); ppc4xx_probe_pciex_bridge()
2153 np->full_name); ppc4xx_probe_pciex_bridge()
2159 np->full_name); ppc4xx_probe_pciex_bridge()
2167 np->full_name); ppc4xx_probe_pciex_bridge()
H A Duic.c247 "cell-index property\n", node->full_name); uic_init_one()
255 "dcr-reg property\n", node->full_name); uic_init_one()
295 panic("Unable to initialize primary UIC %s\n", np->full_name); uic_init_tree()
310 np->full_name); uic_init_tree()
H A Dmpic_timer.c470 np->full_name); timer_group_get_irq()
488 np->full_name); timer_group_get_irq()
512 np->full_name); timer_group_init()
522 np->full_name); timer_group_init()
530 np->full_name); timer_group_init()
537 pr_err("%s: cannot get timer frequency.\n", np->full_name); timer_group_init()
543 pr_err("%s: cannot get timer irqs.\n", np->full_name); timer_group_init()
H A Dmv64x60_dev.c456 np->full_name, err); mv64x60_device_setup()
467 np->full_name, err); mv64x60_device_setup()
479 np2->full_name, err); for_each_child_of_node()
489 np->full_name, err);
498 np->full_name, err);
H A Dfsl_rio.c456 dev->dev.of_node->full_name); fsl_rio_setup()
460 dev->dev.of_node->full_name); fsl_rio_setup()
499 rmu_node->full_name); fsl_rio_setup()
534 np->full_name); fsl_rio_setup()
562 np->full_name); fsl_rio_setup()
574 np->full_name); fsl_rio_setup()
581 np->full_name); fsl_rio_setup()
603 np->full_name, range_start, range_size); fsl_rio_setup()
765 dev->dev.of_node->full_name); fsl_of_rio_rpn_probe()
H A Dppc4xx_soc.c93 printk(KERN_ERR "%s: Can't get cache-size!\n", np->full_name); ppc4xx_l2c_probe()
103 np->full_name); ppc4xx_l2c_probe()
H A Dscom.c198 ent->path.data = (void*) dn->full_name; scom_debug_init_one()
199 ent->path.size = strlen(dn->full_name); scom_debug_init_one()
H A Dmpic_msi.c63 pr_debug("mpic: mapping hwirqs for %s\n", np->full_name); mpic_msi_reserve_u3_hwirqs()
H A Dmsi_bitmap.c88 "found on %s\n", bmp->of_node->full_name); msi_bitmap_reserve_dt_hwirqs()
94 " property on %s\n", bmp->of_node->full_name); msi_bitmap_reserve_dt_hwirqs()
225 of_node.full_name = node_name; test_of_node()
H A Dfsl_gtm.c392 np->full_name); fsl_gtm_init()
400 pr_err("%s: no clock-frequency\n", np->full_name); fsl_gtm_init()
411 np->full_name); fsl_gtm_init()
421 np->full_name); fsl_gtm_init()
H A Dfsl_msi.c218 hose->dn->full_name, np->phandle); fsl_setup_msi_irqs()
441 dev->dev.of_node->full_name); fsl_of_msi_probe()
449 dev->dev.of_node->full_name); fsl_of_msi_probe()
525 __func__, dev->dev.of_node->full_name, fsl_of_msi_probe()
H A Dmv64x60_pci.c140 " bus 0\n", dev->full_name); mv64x60_add_bridge()
H A Dsimple_gpio.c150 np->full_name, ret); for_each_compatible_node()
H A Dppc4xx_cpm.c282 np->full_name); cpm_init()
291 np->full_name); cpm_init()
H A Dfsl_pci.c192 const char *name = hose->dn->full_name; setup_pci_atmu()
481 pr_warning("%s: disabled\n", dev->full_name); fsl_add_bridge()
485 pr_debug("Adding PCI host bridge %s\n", dev->full_name); fsl_add_bridge()
497 " bus 0\n", dev->full_name); fsl_add_bridge()
738 dev->full_name); mpc83xx_add_bridge()
741 pr_debug("Adding PCI host bridge %s\n", dev->full_name); mpc83xx_add_bridge()
777 " bus 0\n", dev->full_name); mpc83xx_add_bridge()
H A Dppc4xx_gpio.c209 np->full_name, ret); ppc4xx_add_gpiochips()
H A Daxonram.c174 device->dev.of_node->full_name); axon_ram_probe()
H A Ddcr.c199 dev->full_name, dcr_n, dcr_c); dcr_map_mmio()
H A Dmpic_msgr.c195 dev_info(&dev->dev, "Of-device full name %s\n", np->full_name); mpic_msgr_probe()
H A Dppc4xx_msi.c236 dev->dev.of_node->full_name); ppc4xx_msi_probe()
/linux-4.1.27/drivers/net/phy/
H A Dmdio-mux-mmioreg.c77 dev_dbg(&pdev->dev, "probing node %s\n", np->full_name); mdio_mux_mmioreg_probe()
86 np->full_name); mdio_mux_mmioreg_probe()
115 "missing a 'reg' property\n", np2->full_name); for_each_available_child_of_node()
121 np2->full_name); for_each_available_child_of_node()
130 np->full_name);
H A Dmdio_bus.c212 child->full_name); of_mdiobus_link_phydev()
219 child->full_name, addr); of_mdiobus_link_phydev()
/linux-4.1.27/drivers/clocksource/
H A Dmoxart_timer.c127 panic("%s: of_iomap failed\n", node->full_name); moxart_timer_init()
131 panic("%s: irq_of_parse_and_map failed\n", node->full_name); moxart_timer_init()
135 panic("%s: setup_irq failed\n", node->full_name); moxart_timer_init()
139 panic("%s: of_clk_get failed\n", node->full_name); moxart_timer_init()
146 panic("%s: clocksource_mmio_init failed\n", node->full_name); moxart_timer_init()
/linux-4.1.27/drivers/of/
H A Dpdt.c44 plen = strlen(dp->parent->full_name); of_pdt_build_full_name()
49 strcpy(n, dp->parent->full_name); of_pdt_build_full_name()
79 buf = prom_early_alloc(strlen(dp->parent->full_name) + of_pdt_build_full_name()
82 of_node_is_root(dp->parent) ? "" : dp->parent->full_name, of_pdt_build_full_name()
211 dp->full_name = of_pdt_build_full_name(dp); of_pdt_build_tree()
238 of_root->full_name = "/"; of_pdt_build_devicetree()
H A Dresolver.c30 const char *full_name) __of_find_node_by_full_name()
38 if (of_node_cmp(node->full_name, full_name) == 0) __of_find_node_by_full_name()
42 found = __of_find_node_by_full_name(child, full_name); for_each_child_of_node()
198 const char *n1 = strrchr(dn1->full_name, '/') ? : "/"; __of_node_name_cmp()
199 const char *n2 = strrchr(dn2->full_name, '/') ? : "/"; __of_node_name_cmp()
233 __func__, rprop->name, node->full_name); for_each_property_of_node()
246 __func__, rprop->name, node->full_name);
257 node->full_name);
278 __func__, child->name, node->full_name); for_each_child_of_node()
29 __of_find_node_by_full_name(struct device_node *node, const char *full_name) __of_find_node_by_full_name() argument
H A Doverlay.c92 cname = kbasename(child->full_name); of_overlay_apply_single_device_node()
104 tchild = __of_node_dup(child, "%s/%s", target->full_name, cname); of_overlay_apply_single_device_node()
141 __func__, target->full_name, prop->name); for_each_property_of_node()
150 __func__, target->full_name, for_each_child_of_node()
179 __func__, ovinfo->target->full_name); of_overlay_apply()
358 __func__, tree->full_name); of_overlay_create()
368 __func__, tree->full_name); of_overlay_create()
376 __func__, tree->full_name); of_overlay_create()
384 __func__, tree->full_name); of_overlay_create()
443 dn->full_name); overlay_is_topmost()
H A Dplatform.c94 strrchr(node->full_name, '/') + 1, dev_name(dev)); of_device_make_bus_id()
228 pr_debug("Creating amba device %s\n", node->full_name); of_amba_device_create()
237 __func__, node->full_name); of_amba_device_create()
263 __func__, ret, node->full_name); of_amba_device_create()
270 __func__, ret, node->full_name); of_amba_device_create()
309 pr_debug("%s: devname=%s\n", np->full_name, lookup->name); of_dev_lookup()
342 __func__, bus->full_name); of_platform_bus_create()
366 pr_debug(" create child: %s\n", child->full_name); for_each_child_of_node()
398 pr_debug(" starting at: %s\n", root->full_name); of_platform_bus_probe()
529 __func__, rd->dn->full_name); of_platform_notify()
H A Ddynamic.c100 pr->dn->full_name); of_reconfig_notify()
106 pr->dn->full_name, pr->prop->name); of_reconfig_notify()
328 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name); of_node_release()
348 kfree(node->full_name); of_node_release()
415 node->full_name = kvasprintf(GFP_KERNEL, fmt, vargs); __of_node_dup()
417 if (!node->full_name) { __of_node_dup()
463 ce->np->full_name, ce->prop->name); __of_changeset_entry_dump()
468 ce->np->full_name); __of_changeset_entry_dump()
534 pr_err("%s: notifier error @%s\n", __func__, ce->np->full_name); __of_changeset_entry_notify()
566 __func__, ce->np->full_name, __of_changeset_entry_apply()
575 __func__, ce->np->full_name, __of_changeset_entry_apply()
594 __func__, ce->np->full_name, __of_changeset_entry_apply()
H A Dunittest.c53 unittest(np && !strcmp("/testcase-data", np->full_name), of_unittest_find_node_by_name()
62 unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name), of_unittest_find_node_by_name()
67 unittest(np && !strcmp("/testcase-data", np->full_name), of_unittest_find_node_by_name()
76 unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name), of_unittest_find_node_by_name()
81 unittest(!np, "non-existent path returned node %s\n", np->full_name); of_unittest_find_node_by_name()
85 unittest(!np, "non-existent alias returned node %s\n", np->full_name); of_unittest_find_node_by_name()
89 unittest(!np, "non-existent alias with relative path returned node %s\n", np->full_name); of_unittest_find_node_by_name()
259 np->phandle, nh->np->full_name, np->full_name); for_each_of_allnodes()
350 i, args.np->full_name, rc); of_unittest_parse_phandle_with_args()
535 "'%s' not added\n", n21->full_name); of_unittest_changeset()
569 i, args.np->full_name, rc); of_unittest_parse_interrupts()
615 i, args.np->full_name, rc); of_unittest_parse_interrupts()
685 i, args.np->full_name, rc); of_unittest_parse_interrupts_extended()
851 dup = of_find_node_by_path(np->full_name); attach_node_and_children()
956 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_probe()
968 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_remove()
1578 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_i2c_bus_probe()
1616 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_i2c_bus_remove()
1647 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_i2c_dev_probe()
1657 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_i2c_dev_remove()
1699 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_i2c_mux_probe()
1750 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name); unittest_i2c_mux_remove()
H A Dof_pci.c179 pr_info("PCI host bridge %s ranges:\n", dev->full_name); of_pci_get_host_bridge_resources()
187 dev->full_name, bus_range); of_pci_get_host_bridge_resources()
232 dev->full_name); of_pci_get_host_bridge_resources()
238 dev->full_name); of_pci_get_host_bridge_resources()
H A Dof_mdio.c98 dev_err(dev, "%s has invalid PHY address\n", np->full_name); of_mdio_parse_addr()
105 np->full_name, addr); of_mdio_parse_addr()
H A Dbase.c155 WARN(rc, "error adding attribute %s to node %s\n", pp->name, np->full_name); __of_add_property_sysfs()
177 name = safe_name(&np->parent->kobj, kbasename(np->full_name)); __of_attach_node_sysfs()
746 const char *name = strrchr(child->full_name, '/'); __for_each_child_of_node()
747 if (WARN(!name, "malformed device_node %s\n", child->full_name)) __for_each_child_of_node()
1107 propname, np->full_name, elem_size); of_property_count_elems_of_size()
1487 np->full_name); __of_parse_phandle_with_args()
1496 np->full_name, cells_name, __of_parse_phandle_with_args()
1497 node->full_name); __of_parse_phandle_with_args()
1510 np->full_name); __of_parse_phandle_with_args()
2115 __func__, node->full_name); of_graph_parse_endpoint()
2199 __func__, parent->full_name); of_graph_get_next_endpoint()
2205 __func__, prev->full_name)) of_graph_get_next_endpoint()
H A Daddress.c319 res->name = np->full_name; of_pci_range_to_resource()
808 r->name = name ? name : dev->full_name; __of_address_to_resource()
964 __func__, np->full_name); of_dma_get_range()
982 __func__, dma_addr, np->full_name); of_dma_get_range()
H A Ddevice.c229 add_uevent_var(env, "OF_FULLNAME=%s", dev->of_node->full_name); of_device_uevent()
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Devent_sources.c47 np->full_name); request_event_sources_irqs()
66 np->full_name); request_event_sources_irqs()
78 "%d for %s\n", virqs[i], np->full_name); request_event_sources_irqs()
H A Ddlpar.c75 * prevent double leading slashs in full_name. dlpar_parse_cc_node()
85 dn->full_name = kasprintf(GFP_KERNEL, "%s/%s", path, name); dlpar_parse_cc_node()
86 if (!dn->full_name) { dlpar_parse_cc_node()
107 kfree(dn->full_name); dlpar_free_one_cc_node()
141 const char *parent_path = parent->full_name; dlpar_configure_connector()
186 parent_path = last_dn->full_name; dlpar_configure_connector()
219 parent_path = last_dn->parent->full_name; dlpar_configure_connector()
274 dn->parent = derive_parent(dn->full_name); dlpar_attach_node()
281 dn->full_name); dlpar_attach_node()
H A Diommu.c479 "missing tce entries !\n", dn->full_name); iommu_table_setparms()
560 pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn->full_name); pci_dma_bus_setup_pSeries()
639 dn->full_name); pci_dma_bus_setup_pSeriesLP()
656 pdn->full_name, ppci->iommu_table); pci_dma_bus_setup_pSeriesLP()
749 np->full_name); remove_ddw()
752 np->full_name); remove_ddw()
758 np->full_name, ret, ddw_avail[2], liobn); remove_ddw()
762 np->full_name, ret, ddw_avail[2], liobn); remove_ddw()
769 np->full_name, ret); remove_ddw()
935 if (!strcmp(fpdn->pdn->full_name, pdn->full_name)) enable_ddw()
1019 create.liobn, dn->full_name); enable_ddw()
1029 dn->full_name, ret); enable_ddw()
1036 pdn->full_name, ret); enable_ddw()
1089 pr_debug(" node is %s\n", dn->full_name); pci_dma_dev_setup_pSeriesLP()
1104 pr_debug(" parent is %s\n", pdn->full_name); pci_dma_dev_setup_pSeriesLP()
1140 dev_dbg(dev, "node is %s\n", dn->full_name); dma_set_mask_pSeriesLP()
1273 iommu_free_table(pci->iommu_table, np->full_name); iommu_reconfig_notifier()
H A Dreconfig.c27 * @path: the full_name of a node to be added to the tree
31 * the node with full_name = "/foo".
66 np->full_name = kstrdup(path, GFP_KERNEL); pSeries_reconfig_add_node()
67 if (!np->full_name) pSeries_reconfig_add_node()
93 kfree(np->full_name); pSeries_reconfig_add_node()
H A Dmsi.c145 pr_debug("rtas_msi: No %s on %s\n", prop_name, dn->full_name); check_req()
184 dn->full_name); find_pe_total_msi()
223 pr_debug("rtas_msi: using PE dn %s\n", dn->full_name); find_pe_dn()
243 pr_debug("rtas_msi: counting %s\n", dn->full_name); count_non_bridge_devices()
301 pr_debug("rtas_msi: found PE %s\n", pe_dn->full_name); msi_quota_for_device()
H A Dpci_dlpar.c73 pr_debug("PCI: Initializing new hotplug PHB %s\n", dn->full_name); init_phb_dynamic()
/linux-4.1.27/drivers/net/ethernet/ibm/emac/
H A Dtah.c62 ofdev->dev.of_node->full_name); tah_reset()
109 np->full_name); tah_probe()
118 np->full_name); tah_probe()
128 "TAH %s initialized\n", ofdev->dev.of_node->full_name); tah_probe()
H A Ddebug.c36 p->ofdev->dev.of_node->full_name, emac_desc_dump()
52 p->ofdev->dev.of_node->full_name, emac_desc_dump()
80 dev->ofdev->dev.of_node->full_name, emac_mac_dump()
132 mal->ofdev->dev.of_node->full_name, emac_mal_dump()
H A Drgmii.c108 ofdev->dev.of_node->full_name); rgmii_attach()
118 ofdev->dev.of_node->full_name, input, rgmii_mode_name(mode)); rgmii_attach()
253 np->full_name); rgmii_probe()
262 np->full_name); rgmii_probe()
282 ofdev->dev.of_node->full_name, rgmii_probe()
H A Dzmii.c125 ofdev->dev.of_node->full_name, zmii_attach()
132 ofdev->dev.of_node->full_name, *mode, input); zmii_attach()
254 np->full_name); zmii_probe()
263 np->full_name); zmii_probe()
274 "ZMII %s initialized\n", ofdev->dev.of_node->full_name); zmii_probe()
H A Ddebug.h57 printk(KERN_DEBUG #name "%s: " fmt, d->ofdev->dev.of_node->full_name, ## arg)
H A Dcore.c135 printk(KERN_ERR "%s: %s\n", dev->ofdev->dev.of_node->full_name, emac_report_timeout_error()
2206 dev->cell_index, dev->ofdev->dev.of_node->full_name); emac_ethtool_get_drvinfo()
2380 np->full_name, name); emac_read_uint_prop()
2480 printk(KERN_WARNING "%s: can't find PHY!\n", np->full_name); emac_init_phy()
2606 np->full_name); emac_init_config()
2630 np->full_name); emac_init_config()
2640 np->full_name); emac_init_config()
2650 np->full_name); emac_init_config()
2659 np->full_name); emac_init_config()
2755 printk(KERN_ERR "%s: Can't map main interrupt\n", np->full_name); emac_probe()
2763 np->full_name); emac_probe()
2771 np->full_name); emac_probe()
2781 np->full_name); emac_probe()
2797 np->full_name, dev->mal_dev->dev.of_node->full_name); emac_probe()
2870 np->full_name, err); emac_probe()
2885 ndev->name, dev->cell_index, np->full_name, ndev->dev_addr); emac_probe()
H A Dmal.c583 ofdev->dev.of_node->full_name); mal_probe()
692 mal->version, ofdev->dev.of_node->full_name, mal_probe()
/linux-4.1.27/drivers/media/platform/xilinx/
H A Dxilinx-vipp.c93 dev_dbg(xdev->dev, "processing endpoint %s\n", ep->full_name); xvip_graph_build_one()
98 ep->full_name); xvip_graph_build_one()
107 link.local_port, link.local_node->full_name); xvip_graph_build_one()
117 link.local_node->full_name, link.local_port); xvip_graph_build_one()
125 link.local_node->full_name, link.local_port); xvip_graph_build_one()
134 link.remote_node->full_name); xvip_graph_build_one()
144 link.remote_port, link.remote_node->full_name); xvip_graph_build_one()
214 dev_dbg(xdev->dev, "processing endpoint %s\n", ep->full_name); xvip_graph_build_dma()
219 ep->full_name); xvip_graph_build_dma()
240 link.remote_node->full_name); xvip_graph_build_dma()
248 link.remote_port, link.remote_node->full_name); xvip_graph_build_dma()
334 entity->node->full_name); xvip_graph_notify_bound()
357 dev_dbg(xdev->dev, "parsing node %s\n", node->full_name); xvip_graph_parse_one()
367 dev_dbg(xdev->dev, "handling endpoint %s\n", ep->full_name); xvip_graph_parse_one()
453 node->full_name); xvip_graph_dma_init_one()
/linux-4.1.27/arch/powerpc/platforms/cell/
H A Daxon_msi.c190 dn->full_name); find_msi_translator()
329 msic->irq_domain->of_node->full_name); axon_msi_shutdown()
342 pr_devel("axon_msi: setting up dn %s\n", dn->full_name); axon_msi_probe()
347 dn->full_name); axon_msi_probe()
357 dn->full_name); axon_msi_probe()
364 dn->full_name); axon_msi_probe()
372 dn->full_name); axon_msi_probe()
379 dn->full_name); axon_msi_probe()
388 dn->full_name); axon_msi_probe()
414 printk(KERN_DEBUG "axon_msi: setup MSIC on %s\n", dn->full_name); axon_msi_probe()
H A Dspu_manage.c192 oirq.np->full_name); spu_map_interrupts()
244 np->full_name); spu_map_device()
251 np->full_name); spu_map_device()
257 np->full_name); spu_map_device()
265 np->full_name); spu_map_device()
268 pr_debug("spu_new: %s maps:\n", np->full_name); spu_map_device()
317 " node number too big\n", spe->full_name, spu->node); of_create_spu()
H A Dspider-pci.c134 np->full_name); spiderpci_iowa_init()
H A Diommu.c282 np->full_name); cell_iommu_find_ioc()
462 np->full_name); cell_iommu_get_ioid()
728 np->full_name); cell_iommu_alloc()
732 nid, np->full_name); cell_iommu_alloc()
744 np->full_name); cell_iommu_alloc()
H A Dras.c200 __func__, np->full_name); cbe_ptcal_enable()
/linux-4.1.27/arch/arm64/kernel/
H A Dtopology.c42 pr_crit("Unable to find CPU node for %s\n", cpu_node->full_name);
69 t->full_name); parse_core()
82 core->full_name); parse_core()
89 pr_err("%s: Can't get CPU for leaf core\n", core->full_name); parse_core()
135 c->full_name); parse_cluster()
144 cluster->full_name, name); parse_cluster()
156 pr_warn("%s: empty cluster\n", cluster->full_name); parse_cluster()
H A Dcpu_ops.c65 dn->full_name); cpu_read_ops()
72 dn->full_name, enable_method); cpu_read_ops()
H A Dsmp.c343 pr_err("%s: missing reg property\n", dn->full_name); of_smp_init_cpus()
352 pr_err("%s: invalid reg property\n", dn->full_name); of_smp_init_cpus()
366 dn->full_name); of_smp_init_cpus()
380 dn->full_name); of_smp_init_cpus()
/linux-4.1.27/arch/c6x/platforms/
H A Dmegamod-pic.c210 pr_err("%s: Could not alloc PIC structure.\n", np->full_name); init_megamod_pic()
217 pr_err("%s: Could not alloc host.\n", np->full_name); init_megamod_pic()
227 pr_err("%s: Could not map registers.\n", np->full_name); init_megamod_pic()
256 np->full_name, i, irq); init_megamod_pic()
268 np->full_name, i, hwirq); init_megamod_pic()
276 np->full_name, i, hwirq); init_megamod_pic()
293 np->full_name, mapping[i], i + 4); init_megamod_pic()
H A Dtimer64.c205 pr_debug("%s: Cannot map timer registers.\n", np->full_name); timer64_init()
208 pr_debug("%s: Timer registers=%p.\n", np->full_name, timer); timer64_init()
212 pr_debug("%s: Cannot find interrupt.\n", np->full_name); timer64_init()
230 pr_debug("%s: Timer irq=%d.\n", np->full_name, cd->irq); timer64_init()
/linux-4.1.27/drivers/macintosh/
H A Dmacio_sysfs.c58 return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name); devspec_show()
H A Drack-meter.c415 mdev->ofdev.node->full_name); rackmeter_probe()
422 mdev->ofdev.node->full_name); rackmeter_probe()
434 mdev->ofdev.dev.of_node->full_name); rackmeter_probe()
H A Dwindfarm_lm87_sensor.c130 client->dev.of_node->full_name); wf_lm87_probe()
H A Dwindfarm_smu_sat.c251 "location %s for %s\n", loc, child->full_name); wf_sat_probe()
/linux-4.1.27/arch/powerpc/include/asm/
H A Dbootx.h39 u32 full_name; member in struct:bootx_dt_node
/linux-4.1.27/drivers/gpio/
H A Dgpio-ge.c79 bgc->gc.label = devm_kstrdup(&pdev->dev, pdev->dev.of_node->full_name, gef_gpio_probe()
100 pdev->dev.of_node->full_name); gef_gpio_probe()
H A Dgpiolib-of.c94 __func__, propname, np->full_name, index); of_get_named_gpiod_flags()
102 __func__, propname, np->full_name, index, of_get_named_gpiod_flags()
292 gc->label = kstrdup(np->full_name, GFP_KERNEL); of_mm_gpiochip_add()
318 np->full_name, ret); of_mm_gpiochip_add()
373 np->full_name); of_gpiochip_add_pin_range()
389 np->full_name); of_gpiochip_add_pin_range()
395 np->full_name, group_names_propname); of_gpiochip_add_pin_range()
407 np->full_name); of_gpiochip_add_pin_range()
H A Dgpio-moxart.c91 dev->of_node->full_name); moxart_gpio_probe()
H A Dgpio-dwapb.c490 port_np->full_name); for_each_child_of_node()
497 port_np->full_name); for_each_child_of_node()
510 port_np->full_name); for_each_child_of_node()
516 pp->name = port_np->full_name; for_each_child_of_node()
H A Dgpio-tz1090.c532 node->full_name); for_each_available_child_of_node()
537 addr, node->full_name); for_each_available_child_of_node()
548 node->full_name); for_each_available_child_of_node()
H A Dgpio-altera.c331 node->full_name, ret); altera_gpio_probe()
/linux-4.1.27/arch/powerpc/kernel/
H A Dpci_of_scan.c218 pr_debug("of_scan_pci_bridge(%s)\n", node->full_name); of_scan_pci_bridge()
224 node->full_name); of_scan_pci_bridge()
230 node->full_name); of_scan_pci_bridge()
241 node->full_name); of_scan_pci_bridge()
269 " for bridge %s\n", node->full_name); of_scan_pci_bridge()
275 " for bridge %s\n", node->full_name); of_scan_pci_bridge()
314 pr_debug(" * %s\n", dn->full_name); of_scan_pci_dev()
358 node->full_name, bus->number); __of_scan_bus()
H A Dcacheinfo.c171 iter->ofnode->full_name, release_cache_debugcheck()
173 cache->ofnode->full_name, release_cache_debugcheck()
183 cache_type_string(cache), cache->ofnode->full_name); release_cache()
198 cpu, next->ofnode->full_name, cache_cpu_set()
358 pr_debug("creating L%d ucache for %s\n", level, node->full_name); cache_do_one_devnode_unified()
369 node->full_name); cache_do_one_devnode_split()
693 cache_name = cache->ofnode->full_name; cacheinfo_create_index_opt_attrs()
835 cpu, cache->ofnode->full_name, cache_cpu_clear()
H A Dio-workarounds.c195 "workarounds disabled for %s\n", np->full_name); iowa_register_bus()
210 pr_debug("IOWA:[%d]Add bus, %s.\n", iowa_bus_count-1, np->full_name); iowa_register_bus()
H A Dof_platform.c48 pr_info("Setting up PCI bus %s\n", dev->dev.of_node->full_name); of_pci_phb_probe()
H A Disa-bridge.c166 pr_debug("ISA bridge (early) is %s\n", np->full_name); isa_bridge_find_early()
189 devnode->full_name, pci_name(pdev)); isa_bridge_find_late()
H A Dpci_64.c114 pr_debug("IO unmapping for PHB %s\n", hose->dn->full_name); pcibios_unmap_io_space()
154 pr_debug("IO mapping for PHB %s\n", hose->dn->full_name); pcibios_map_phb_io_space()
H A Dlegacy_serial.c151 index, np->full_name); add_legacy_port()
210 DBG(" -> add_legacy_isa_port(%s)\n", np->full_name); add_legacy_isa_port()
258 DBG(" -> add_legacy_pci_port(%s)\n", np->full_name); add_legacy_pci_port()
376 DBG("stdout is %s\n", stdout->full_name); find_legacy_serial_ports()
605 DBG("stdout is %s\n", prom_stdout->full_name); check_legacy_serial_console()
H A Dibmebus.c153 return (dn->full_name && ibmebus_match_path()
154 (strcasecmp((char *)data, dn->full_name) == 0)); ibmebus_match_path()
390 return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name); devspec_show()
H A Dpci_32.c81 "assuming it starts at 0\n", node->full_name); make_one_node_map()
/linux-4.1.27/drivers/cpuidle/
H A Ddt_idle_states.c51 state_node->full_name); init_state_node()
59 state_node->full_name); init_state_node()
73 state_node->full_name); init_state_node()
182 state_node->full_name); dt_init_idle_driver()
196 state_node->full_name, err); dt_init_idle_driver()
/linux-4.1.27/drivers/video/fbdev/
H A Dsunxvr1000.c36 gp->of_node->full_name); gfb_get_props()
153 printk("gfb: Found device at %s\n", dp->full_name); gfb_probe()
158 dp->full_name); gfb_probe()
H A Doffb.c390 static void __init offb_init_fb(const char *name, const char *full_name, offb_init_fb() argument
409 printk(KERN_ERR "%s: can't use depth = %d\n", full_name, offb_init_fb()
522 fb_info(info, "Open Firmware frame buffer device on %s\n", full_name); offb_init_fb()
636 no_real_node ? "display" : dp->full_name, offb_init_nodriver()
H A Dbw2.c337 dp->full_name, par->which_io, info->fix.smem_start); bw2_probe()
H A Dp9100.c308 dp->full_name, p9100_probe()
/linux-4.1.27/arch/powerpc/platforms/52xx/
H A Defika.c102 ": Can't get bus-range for %s\n", pcictrl->full_name); efika_pcisetup()
112 printk(" controlled by %s\n", pcictrl->full_name); efika_pcisetup()
119 pcictrl->full_name); efika_pcisetup()
H A Dmpc52xx_pci.c372 pr_debug("Adding MPC52xx PCI host bridge %s\n", node->full_name); mpc52xx_add_bridge()
377 printk(KERN_ERR "Can't get %s resources\n", node->full_name); mpc52xx_add_bridge()
384 node->full_name); mpc52xx_add_bridge()
H A Dmedia5200.c159 pr_debug("%s: found fpga node: %s\n", __func__, fpga_np->full_name); media5200_init_irq()
/linux-4.1.27/arch/powerpc/platforms/powermac/
H A Dpfunc_base.c58 tmp, func->node->full_name, addr); macio_do_gpio_write()
111 macio->of_node->full_name); macio_gpio_init_one()
133 macio->of_node->full_name); macio_gpio_init_one()
271 macio->of_node->full_name); macio_mmio_init_one()
302 uninorth_node->full_name); uninorth_install_pfunc()
321 unin_hwclock->full_name); uninorth_install_pfunc()
H A Dlow_i2c.c497 np->full_name); kw_i2c_host_init()
508 np->full_name); kw_i2c_host_init()
541 np->full_name); kw_i2c_host_init()
546 np->full_name); kw_i2c_host_init()
563 *addrp, host->irq, np->full_name); kw_i2c_host_init()
595 (controller == busnode) ? "<multibus>" : busnode->full_name); kw_i2c_add()
799 printk(KERN_INFO "PMU i2c %s\n", busnode->full_name); pmu_i2c_probe()
913 printk(KERN_INFO "SMU i2c %s\n", controller->full_name); smu_i2c_probe()
945 bus->channel, busnode->full_name); smu_i2c_probe()
1128 " bus %s !\n", mode, bus->busnode->full_name); pmac_i2c_setmode()
1146 subaddr, len, bus->busnode->full_name); pmac_i2c_xfer()
1241 func->node->full_name); pmac_i2c_do_begin()
1246 func->node->full_name); pmac_i2c_do_begin()
1416 DBG("dev_create(%s)\n", np->full_name); pmac_i2c_dev_create()
1424 DBG("dev_create(%s)\n", np->full_name); pmac_i2c_dev_init()
1431 DBG("dev_suspend(%s)\n", np->full_name); pmac_i2c_dev_suspend()
1437 DBG("dev_resume(%s)\n", np->full_name); pmac_i2c_dev_resume()
H A Dbootx_init.c229 namep = np->full_name ? (char *)(base + np->full_name) : NULL; bootx_scan_dt_build_strings()
289 namep = np->full_name ? (char *)(base + np->full_name) : NULL; bootx_scan_dt_build_struct()
H A Dpic.c366 master->full_name, max_real_irqs); pmac_pic_probe_oldstyle()
380 " cascade: %d\n", slave->full_name, pmac_pic_probe_oldstyle()
/linux-4.1.27/arch/powerpc/platforms/embedded6xx/
H A Dlinkstation.c44 printk("Adding PCI host bridge %s\n", dev->full_name); linkstation_add_bridge()
49 " bus 0\n", dev->full_name); linkstation_add_bridge()
H A Dstorcenter.c47 printk("Adding PCI host bridge %s\n", dev->full_name); storcenter_add_bridge()
H A Dmvme5100.c118 pr_info("Adding PCI host bridge %s\n", dev->full_name); mvme5100_add_bridge()
/linux-4.1.27/arch/powerpc/platforms/powernv/
H A Dopal-xscom.c40 __func__, dev->full_name); opal_scom_map()
46 __func__, dev->full_name); opal_scom_map()
H A Drng.c91 pr_warn("No ibm,chip-id found for %s.\n", dn->full_name); rng_init_per_cpu()
145 dn->full_name, rc); rng_init()
H A Dpci-p5ioc2.c107 pr_info(" Initializing p5ioc2 PHB %s\n", np->full_name); pnv_pci_init_p5ioc2_phb()
187 pr_info("Probing p5ioc2 IO-Hub %s\n", np->full_name); pnv_pci_init_p5ioc2_hub()
205 pr_info(" No PHBs for Hub %s\n", np->full_name);
H A Dopal-async.c170 __func__, opal_node->full_name); opal_async_comp_init()
/linux-4.1.27/arch/sparc/kernel/
H A Dof_device_64.c344 op->dev.of_node->full_name, num_reg, PROMREG_MAX); build_device_resources()
403 op->dev.of_node->full_name, index, build_device_resources()
550 dp->full_name, orig_irq, irq); build_one_device_irq()
581 op->dev.of_node->full_name, build_one_device_irq()
582 pp->full_name, this_orig_irq, build_one_device_irq()
600 op->dev.of_node->full_name, build_one_device_irq()
601 pp->full_name, this_orig_irq, build_one_device_irq()
621 op->dev.of_node->full_name, ip->full_name, orig_irq, irq); build_one_device_irq()
659 dp->full_name, op->archdata.num_irqs, PROMINTR_MAX); scan_one_device()
680 dp->full_name); scan_one_device()
H A Dauxio_64.c126 dp->full_name); auxio_probe()
H A Dpci.c426 printk("of_scan_pci_bridge(%s)\n", node->full_name); of_scan_pci_bridge()
432 node->full_name); of_scan_pci_bridge()
451 node->full_name); of_scan_pci_bridge()
507 " for bridge %s\n", node->full_name); of_scan_pci_bridge()
513 " for bridge %s\n", node->full_name); of_scan_pci_bridge()
550 node->full_name, bus->number); pci_of_scan_bus()
556 printk(" * %s\n", child->full_name); pci_of_scan_bus()
594 return snprintf (buf, PAGE_SIZE, "%s\n", dp->full_name); show_pciobppath_attr()
657 printk("PCI: Scanning PBM %s\n", node->full_name); pci_scan_one_pbm()
671 node->full_name); pci_scan_one_pbm()
1056 node->full_name, mask); pci_bus_slot_names()
H A Dof_device_32.c326 op->dev.of_node->full_name, index, build_device_resources()
385 dp->full_name); scan_one_device()
H A Dprom_32.c258 strcpy(of_console_path, dp->full_name);
298 strcpy(of_console_path, dp->full_name);
H A Dsun4d_irq.c364 bus->full_name, bus_connection); sun4d_build_device_irq()
371 board_parent->full_name); sun4d_build_device_irq()
H A Dtime_64.c427 op->dev.of_node->full_name, op->resource[0].start); rtc_probe()
483 op->dev.of_node->full_name, op->resource[0].start); bq4802_probe()
547 dp->full_name, op->resource[0].start); mostek_probe()
H A Dchmc.c468 op->dev.of_node->full_name); jbusmc_probe()
751 dp->full_name, chmc_probe()
/linux-4.1.27/drivers/crypto/
H A Dn2_core.c1754 dev->dev.of_node->full_name); mdesc_for_each_arc()
1775 dev->dev.of_node->full_name); handle_exec_unit()
2004 const char *full_name; n2_crypto_probe() local
2010 full_name = dev->dev.of_node->full_name; n2_crypto_probe()
2011 pr_info("Found N2CP at %s\n", full_name); n2_crypto_probe()
2016 full_name); n2_crypto_probe()
2023 "global resources.\n", full_name); n2_crypto_probe()
2031 full_name); n2_crypto_probe()
2038 full_name); n2_crypto_probe()
2050 full_name); n2_crypto_probe()
2057 full_name); n2_crypto_probe()
2115 const char *full_name; n2_mau_probe() local
2121 full_name = dev->dev.of_node->full_name; n2_mau_probe()
2122 pr_info("Found NCP at %s\n", full_name); n2_mau_probe()
2127 full_name); n2_mau_probe()
2134 "global resources.\n", full_name); n2_mau_probe()
2142 full_name); n2_mau_probe()
2150 full_name); n2_mau_probe()
2162 full_name); n2_mau_probe()
/linux-4.1.27/drivers/clk/ti/
H A Dclockdomain.c41 __func__, node->full_name, i, PTR_ERR(clk)); of_ti_clockdomain_setup()
/linux-4.1.27/drivers/hwmon/
H A Dads1015.c194 node->full_name); ads1015_get_channels_config_of()
202 channel, node->full_name); ads1015_get_channels_config_of()
210 node->full_name); ads1015_get_channels_config_of()
220 node->full_name); ads1015_get_channels_config_of()
/linux-4.1.27/arch/arm/mach-mvebu/
H A Dcpu-reset.c52 np->full_name)) { mvebu_cpu_reset_map()
H A Dkirkwood.c112 np->full_name); kirkwood_dt_eth_fixup()
H A Dpm.c199 np->full_name)) { mvebu_pm_init()
/linux-4.1.27/sound/soc/fsl/
H A Dimx-audmux.c272 child->full_name); for_each_available_child_of_node()
277 child->full_name); for_each_available_child_of_node()
296 i, child->full_name); for_each_available_child_of_node()
303 child->full_name); for_each_available_child_of_node()
/linux-4.1.27/arch/powerpc/platforms/chrp/
H A Dpci.c239 dev->full_name); chrp_find_bridges()
245 dev->full_name); chrp_find_bridges()
253 printk(" controlled by %s", dev->full_name); chrp_find_bridges()
261 dev->full_name); chrp_find_bridges()
301 dev->full_name, model); chrp_find_bridges()
/linux-4.1.27/drivers/mtd/
H A Dofpart.c97 pr_err("No valid partition found on %s\n", node->full_name);
135 dp->full_name); parse_ofoldpart_partitions()
/linux-4.1.27/drivers/pci/hotplug/
H A Drpaphp_pci.c98 err("%s: no pci_bus for dn %s\n", __func__, slot->dn->full_name); rpaphp_enable_slot()
128 dbg("%s: pci_devs of slot[%s]\n", __func__, slot->dn->full_name); rpaphp_enable_slot()
H A Drpaphp_slot.c124 __func__, slot->dn->full_name, slot->index, slot->name, rpaphp_register_slot()
H A Drpaphp_core.c321 dbg("Entry %s: dn->full_name=%s\n", __func__, dn->full_name); rpaphp_add_slot()
/linux-4.1.27/drivers/bus/
H A Dimx-weim.c160 child->full_name); weim_parse_dt()
171 pdev->dev.of_node->full_name); weim_parse_dt()
/linux-4.1.27/crypto/
H A Dccm.c476 const char *full_name, crypto_ccm_alloc_common()
539 memcpy(inst->alg.cra_name, full_name, CRYPTO_MAX_ALG_NAME); crypto_ccm_alloc_common()
577 char full_name[CRYPTO_MAX_ALG_NAME]; crypto_ccm_alloc() local
587 if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "ccm(%s)", cipher_name) >= crypto_ccm_alloc()
591 return crypto_ccm_alloc_common(tb, full_name, ctr_name, cipher_name); crypto_ccm_alloc()
614 char full_name[CRYPTO_MAX_ALG_NAME]; crypto_ccm_base_alloc() local
624 if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "ccm_base(%s,%s)", crypto_ccm_base_alloc()
628 return crypto_ccm_alloc_common(tb, full_name, ctr_name, cipher_name); crypto_ccm_base_alloc()
475 crypto_ccm_alloc_common(struct rtattr **tb, const char *full_name, const char *ctr_name, const char *cipher_name) crypto_ccm_alloc_common() argument
H A Dgcm.c698 const char *full_name, crypto_gcm_alloc_common()
760 memcpy(inst->alg.cra_name, full_name, CRYPTO_MAX_ALG_NAME); crypto_gcm_alloc_common()
797 char full_name[CRYPTO_MAX_ALG_NAME]; crypto_gcm_alloc() local
807 if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "gcm(%s)", cipher_name) >= crypto_gcm_alloc()
811 return crypto_gcm_alloc_common(tb, full_name, ctr_name, "ghash"); crypto_gcm_alloc()
834 char full_name[CRYPTO_MAX_ALG_NAME]; crypto_gcm_base_alloc() local
844 if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "gcm_base(%s,%s)", crypto_gcm_base_alloc()
848 return crypto_gcm_alloc_common(tb, full_name, ctr_name, ghash_name); crypto_gcm_base_alloc()
697 crypto_gcm_alloc_common(struct rtattr **tb, const char *full_name, const char *ctr_name, const char *ghash_name) crypto_gcm_alloc_common() argument
/linux-4.1.27/arch/powerpc/platforms/amigaone/
H A Dsetup.c43 printk(KERN_INFO "Adding PCI host bridge %s\n", dev->full_name); amigaone_add_bridge()
53 " bus 0\n", dev->full_name); amigaone_add_bridge()
/linux-4.1.27/tools/iio/
H A Diio_utils.h50 int iioutils_break_up_name(const char *full_name, char **generic_name);
H A Diio_utils.c30 * @full_name: the full channel name
33 int iioutils_break_up_name(const char *full_name, iioutils_break_up_name() argument
42 if (!strncmp(full_name, iio_direction[i], iioutils_break_up_name()
48 current = strdup(full_name + strlen(prefix) + 1); iioutils_break_up_name()
/linux-4.1.27/drivers/memory/
H A Djz4780-nemc.c326 child->full_name, bank); jz4780_nemc_probe()
338 child->full_name); jz4780_nemc_probe()
342 child->full_name); jz4780_nemc_probe()
H A Dmvebu-devbus.c109 name, node->full_name); get_timing_param_ps()
131 node->full_name); devbus_get_timing_params()
184 node->full_name); devbus_get_timing_params()
/linux-4.1.27/drivers/clk/berlin/
H A Dbg2q.c299 pr_err("%s: Unable to map global base\n", np->full_name); berlin2q_clock_setup()
306 pr_err("%s: Unable to map cpupll base\n", np->full_name); berlin2q_clock_setup()
372 np->full_name, n); berlin2q_clock_setup()
/linux-4.1.27/arch/arm/mach-shmobile/
H A Dpm-rmobile.c267 np->full_name); add_special_pd()
403 pr_warn("%s cannot map reg 0\n", np->full_name); rmobile_init_pm_domains()
409 pr_warn("%s lacks pm-domains node\n", np->full_name); rmobile_init_pm_domains()
/linux-4.1.27/drivers/net/ethernet/freescale/
H A Dfsl_pq_mdio.c260 np->full_name); ucc_configure()
273 np->full_name); ucc_configure()
286 np->full_name); ucc_configure()
429 strrchr(tbi->full_name, '/') + 1); for_each_child_of_node()
441 tbi->full_name);
/linux-4.1.27/drivers/tty/hvc/
H A Dhvc_opal.c196 dev->dev.of_node->full_name); hvc_opal_probe()
221 dev->dev.of_node->full_name, termno); hvc_opal_probe()
227 dev->dev.of_node->full_name, hvc_opal_probe()
H A Dhvc_vio.c317 pr_err("hvc_vio: Unknown protocol for %s\n", vdev->dev.of_node->full_name); hvc_vio_probe()
322 vdev->dev.of_node->full_name, hvc_vio_probe()
/linux-4.1.27/drivers/i2c/busses/
H A Di2c-powermac.c239 dev_warn(&adap->dev, "No i2c address for %s\n", node->full_name); i2c_powermac_get_addr()
321 " on %s\n", node->full_name); i2c_powermac_get_type()
354 node->full_name); i2c_powermac_register_devices()
377 " %s\n", node->full_name); i2c_powermac_register_devices()
H A Di2c-gpio.c102 np->full_name, *sda_pin, *scl_pin); of_i2c_gpio_get_pins()
H A Di2c-sun6i-p2wi.c227 childnp->full_name); p2wi_probe()
/linux-4.1.27/drivers/mtd/maps/
H A Dsun_uflash.c59 dp->full_name, (unsigned long long)op->resource[0].start); uflash_devinit()
/linux-4.1.27/drivers/media/platform/exynos4-is/
H A Dfimc-is-i2c.c61 node->full_name); fimc_is_i2c_probe()
H A Dfimc-is.c174 node->full_name); fimc_is_parse_sensor_config()
190 node->full_name); fimc_is_parse_sensor_config()
/linux-4.1.27/drivers/scsi/
H A Dmac53c94.c453 node->full_name); mac53c94_probe()
460 "assuming 25MHz\n", node->full_name); mac53c94_probe()
473 "command space for %s\n", node->full_name); mac53c94_probe()
486 state->intr, node->full_name); mac53c94_probe()
/linux-4.1.27/drivers/spmi/
H A Dspmi.c440 dev_dbg(&ctrl->dev, "adding child %s\n", node->full_name); of_spmi_register_devices()
446 node->full_name, err); of_spmi_register_devices()
453 node->full_name); of_spmi_register_devices()
460 node->full_name); of_spmi_register_devices()
/linux-4.1.27/drivers/reset/
H A Dreset-socfpga.c110 pdev->dev.of_node->full_name); socfpga_reset_probe()
/linux-4.1.27/drivers/misc/
H A Dsram.c122 child->full_name); for_each_available_child_of_node()
129 child->full_name); for_each_available_child_of_node()
/linux-4.1.27/drivers/input/
H A Dmatrix-keymap.c93 propname, np->full_name); matrix_keypad_parse_of_keymap()
99 propname, np->full_name); matrix_keypad_parse_of_keymap()
/linux-4.1.27/drivers/dma/
H A Dof-dma.c42 dma_spec->np->full_name); of_dma_find_controller()
169 __func__, np->full_name); of_dma_request_slave_channel()
/linux-4.1.27/arch/arm/kernel/
H A Ddevtree.c95 pr_debug(" * %s...\n", cpu->full_name); for_each_child_of_node()
103 cpu->full_name); for_each_child_of_node()
H A Dcpuidle.c109 dn->full_name, enable_method); arm_cpuidle_read_ops()
H A Dtopology.c123 cn->full_name); for_each_possible_cpu()
/linux-4.1.27/arch/powerpc/platforms/512x/
H A Dmpc512x_shared.c391 prop_name, np->full_name, DEFAULT_FIFO_SIZE); get_fifo_size()
430 __func__, np->full_name); for_each_compatible_node()
437 __func__, np->full_name); for_each_compatible_node()
/linux-4.1.27/arch/arm/mach-exynos/
H A Dsuspend.c238 pr_err("%s: no parent, giving up\n", node->full_name); exynos_pmu_irq_init()
244 pr_err("%s: unable to obtain parent domain\n", node->full_name); exynos_pmu_irq_init()
252 node->full_name); exynos_pmu_irq_init()
/linux-4.1.27/drivers/sbus/char/
H A Dflash.c185 op->dev.of_node->full_name, flash_probe()
H A Ddisplay7seg.c216 op->dev.of_node->full_name, d7s_probe()
H A Ductrl.c383 op->dev.of_node->full_name, p->regs, p->irq); uctrl_probe()
/linux-4.1.27/drivers/gpu/drm/
H A Ddrm_mipi_dsi.c143 node->full_name, ret); of_mipi_dsi_device_add()
149 node->full_name, reg); of_mipi_dsi_device_add()
156 node->full_name, PTR_ERR(dsi)); of_mipi_dsi_device_add()
166 node->full_name, ret); of_mipi_dsi_device_add()
/linux-4.1.27/arch/x86/kernel/
H A Ddevicetree.c246 dn->full_name); dtb_add_ioapic()
/linux-4.1.27/arch/microblaze/kernel/
H A Dintc.c164 intc->full_name, nr_irq, intr_mask); xilinx_intc_of_init()
H A Dtimer.c289 pr_info("%s: irq=%d\n", timer->full_name, irq); xilinx_timer_init()
/linux-4.1.27/arch/powerpc/platforms/83xx/
H A Dmcu_mpc8349emitx.c131 gc->label = np->full_name; mcu_gpiochip_add()
H A Dmpc832x_rdb.c116 pr_err("%s: registration failed\n", np->full_name); for_each_compatible_node()
/linux-4.1.27/arch/powerpc/platforms/85xx/
H A Dxes_mpc85xx.c104 np->full_name); xes_mpc85xx_fixups()
H A Dp1022_ds.c512 np2->full_name); p1022_ds_setup_arch()
528 np2->full_name); p1022_ds_setup_arch()
/linux-4.1.27/drivers/video/backlight/
H A Das3711_bl.c276 pdata->su1_fb = fb->full_name; as3711_backlight_parse_dt()
289 pdata->su2_fb = fb->full_name; as3711_backlight_parse_dt()
/linux-4.1.27/arch/arm/mach-imx/
H A Dgpc.c243 pr_err("%s: no parent, giving up\n", node->full_name); imx_gpc_init()
249 pr_err("%s: unable to obtain parent domain\n", node->full_name); imx_gpc_init()
/linux-4.1.27/drivers/iommu/
H A Dfsl_pamu.c534 node->full_name); get_stash_id()
561 node->full_name); get_stash_id()
572 node->full_name); get_stash_id()
1067 dev->of_node->full_name); fsl_pamu_probe()
1250 np->full_name); fsl_pamu_init()
1263 np->full_name, ret); fsl_pamu_init()
/linux-4.1.27/drivers/pinctrl/freescale/
H A Dpinctrl-imx.c520 dev_err(info->dev, "no fsl,pins property in node %s\n", np->full_name); imx_pinctrl_parse_groups()
526 dev_err(info->dev, "Invalid fsl,pins property in node %s\n", np->full_name); imx_pinctrl_parse_groups()
594 dev_err(info->dev, "no groups defined in %s\n", np->full_name); imx_pinctrl_parse_functions()
/linux-4.1.27/drivers/gpu/drm/rcar-du/
H A Drcar_du_kms.c524 ep->local_node->full_name); rcar_du_encoders_init_one()
545 encoder->full_name); for_each_endpoint_of_node()
574 encoder->full_name);
/linux-4.1.27/arch/powerpc/platforms/maple/
H A Dpci.c76 bridge->full_name); fixup_bus_range()
500 DBG("Adding PCI host bridge %s\n", dev->full_name); maple_add_bridge()
505 dev->full_name); maple_add_bridge()
/linux-4.1.27/drivers/ide/
H A Dpmac.c1149 mdev->ofdev.dev.of_node->full_name); pmac_ide_macio_attach()
1157 "%s!\n", mdev->ofdev.dev.of_node->full_name); pmac_ide_macio_attach()
1169 "13\n", mdev->ofdev.dev.of_node->full_name); pmac_ide_macio_attach()
1187 mdev->ofdev.dev.of_node->full_name); pmac_ide_macio_attach()
1277 "%s\n", np->full_name); pmac_ide_pci_attach()
1285 "%s\n", np->full_name); pmac_ide_pci_attach()
/linux-4.1.27/drivers/devfreq/
H A Ddevfreq-event.c237 dev->of_node->full_name); devfreq_event_get_edev_by_phandle()
283 dev->of_node->full_name); devfreq_event_get_edev_count()
/linux-4.1.27/arch/arm/mach-omap2/
H A Domap-wakeupgen.c466 pr_err("%s: no parent, giving up\n", node->full_name); wakeupgen_init()
472 pr_err("%s: unable to obtain parent domain\n", node->full_name); wakeupgen_init()
/linux-4.1.27/drivers/media/v4l2-core/
H A Dv4l2-of.c59 node->full_name, 1 + bus->num_data_lanes, i); v4l2_of_parse_csi_bus()
/linux-4.1.27/drivers/regulator/
H A Dmax1586.c172 dev_err(dev, "%s has no 'v3-gain' property\n", np->full_name); of_get_max1586_platform_data()
/linux-4.1.27/drivers/pinctrl/
H A Ddevicetree.c125 np_config->full_name); dt_to_map_one_config()
/linux-4.1.27/drivers/usb/host/
H A Dfsl-mph-dr-of.c58 np->full_name); get_dr_mode_data()
/linux-4.1.27/arch/powerpc/platforms/pasemi/
H A Dpci.c196 pr_debug("Adding PCI host bridge %s\n", dev->full_name); pas_add_bridge()
/linux-4.1.27/arch/powerpc/sysdev/qe_lib/
H A Dgpio.c311 np->full_name, ret); qe_add_gpiochips()
/linux-4.1.27/arch/mips/pci/
H A Dpci.c131 pr_info("PCI host bridge %s ranges:\n", node->full_name); pci_load_of_ranges()
/linux-4.1.27/arch/arm/mach-rockchip/
H A Dplatsmp.c182 __func__, node->full_name); rockchip_smp_prepare_sram()
/linux-4.1.27/drivers/pwm/
H A Dcore.c540 pr_debug("%s: wrong #pwm-cells for %s\n", np->full_name, of_pwm_get()
541 args.np->full_name); of_pwm_get()
/linux-4.1.27/drivers/pinctrl/sirf/
H A Dpinctrl-sirf.c809 sgpio->chip.gc.label = kstrdup(np->full_name, GFP_KERNEL); sirfsoc_gpio_probe()
819 np->full_name, err); sirfsoc_gpio_probe()

Completed in 8552 milliseconds

12