of: Always use 'struct device.of_node' to get device node pointer.
The following structure elements duplicate the information in 'struct device.of_node' and so are being eliminated. This patch makes all readers of these elements use device.of_node instead. (struct of_device *)->node (struct dev_archdata *)->prom_node (sparc) (struct dev_archdata *)->of_node (powerpc & microblaze) Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
d12d42f744
commit
61c7a080a5
157 changed files with 497 additions and 488 deletions
|
@ -12,7 +12,7 @@
|
|||
void of_device_make_bus_id(struct of_device *dev)
|
||||
{
|
||||
static atomic_t bus_no_reg_magic;
|
||||
struct device_node *node = dev->node;
|
||||
struct device_node *node = dev->dev.of_node;
|
||||
const u32 *reg;
|
||||
u64 addr;
|
||||
int magic;
|
||||
|
@ -76,17 +76,17 @@ int of_device_uevent(struct device *dev, struct kobj_uevent_env *env)
|
|||
|
||||
ofdev = to_of_device(dev);
|
||||
|
||||
if (add_uevent_var(env, "OF_NAME=%s", ofdev->node->name))
|
||||
if (add_uevent_var(env, "OF_NAME=%s", ofdev->dev.of_node->name))
|
||||
return -ENOMEM;
|
||||
|
||||
if (add_uevent_var(env, "OF_TYPE=%s", ofdev->node->type))
|
||||
if (add_uevent_var(env, "OF_TYPE=%s", ofdev->dev.of_node->type))
|
||||
return -ENOMEM;
|
||||
|
||||
/* Since the compatible field can contain pretty much anything
|
||||
* it's not really legal to split it out with commas. We split it
|
||||
* up using a number of environment variables instead. */
|
||||
|
||||
compat = of_get_property(ofdev->node, "compatible", &cplen);
|
||||
compat = of_get_property(ofdev->dev.of_node, "compatible", &cplen);
|
||||
while (compat && *compat && cplen > 0) {
|
||||
if (add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat))
|
||||
return -ENOMEM;
|
||||
|
|
|
@ -166,7 +166,7 @@ EXPORT_SYMBOL(of_platform_bus_probe);
|
|||
|
||||
static int of_dev_node_match(struct device *dev, void *data)
|
||||
{
|
||||
return to_of_device(dev)->node == data;
|
||||
return to_of_device(dev)->dev.of_node == data;
|
||||
}
|
||||
|
||||
struct of_device *of_find_device_by_node(struct device_node *np)
|
||||
|
@ -184,7 +184,7 @@ EXPORT_SYMBOL(of_find_device_by_node);
|
|||
static int of_dev_phandle_match(struct device *dev, void *data)
|
||||
{
|
||||
phandle *ph = data;
|
||||
return to_of_device(dev)->node->phandle == *ph;
|
||||
return to_of_device(dev)->dev.of_node->phandle == *ph;
|
||||
}
|
||||
|
||||
struct of_device *of_find_device_by_phandle(phandle ph)
|
||||
|
|
|
@ -108,7 +108,7 @@ static inline void* macio_get_drvdata(struct macio_dev *dev)
|
|||
|
||||
static inline struct device_node *macio_get_of_node(struct macio_dev *mdev)
|
||||
{
|
||||
return mdev->ofdev.node;
|
||||
return mdev->ofdev.dev.of_node;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PCI
|
||||
|
|
|
@ -140,14 +140,14 @@ static struct dma_map_ops ibmebus_dma_ops = {
|
|||
|
||||
static int ibmebus_match_path(struct device *dev, void *data)
|
||||
{
|
||||
struct device_node *dn = to_of_device(dev)->node;
|
||||
struct device_node *dn = to_of_device(dev)->dev.of_node;
|
||||
return (dn->full_name &&
|
||||
(strcasecmp((char *)data, dn->full_name) == 0));
|
||||
}
|
||||
|
||||
static int ibmebus_match_node(struct device *dev, void *data)
|
||||
{
|
||||
return to_of_device(dev)->node == data;
|
||||
return to_of_device(dev)->dev.of_node == data;
|
||||
}
|
||||
|
||||
static int ibmebus_create_device(struct device_node *dn)
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
static void of_device_make_bus_id(struct of_device *dev)
|
||||
{
|
||||
static atomic_t bus_no_reg_magic;
|
||||
struct device_node *node = dev->node;
|
||||
struct device_node *node = dev->dev.of_node;
|
||||
const u32 *reg;
|
||||
u64 addr;
|
||||
int magic;
|
||||
|
@ -96,17 +96,17 @@ int of_device_uevent(struct device *dev, struct kobj_uevent_env *env)
|
|||
|
||||
ofdev = to_of_device(dev);
|
||||
|
||||
if (add_uevent_var(env, "OF_NAME=%s", ofdev->node->name))
|
||||
if (add_uevent_var(env, "OF_NAME=%s", ofdev->dev.of_node->name))
|
||||
return -ENOMEM;
|
||||
|
||||
if (add_uevent_var(env, "OF_TYPE=%s", ofdev->node->type))
|
||||
if (add_uevent_var(env, "OF_TYPE=%s", ofdev->dev.of_node->type))
|
||||
return -ENOMEM;
|
||||
|
||||
/* Since the compatible field can contain pretty much anything
|
||||
* it's not really legal to split it out with commas. We split it
|
||||
* up using a number of environment variables instead. */
|
||||
|
||||
compat = of_get_property(ofdev->node, "compatible", &cplen);
|
||||
compat = of_get_property(ofdev->dev.of_node, "compatible", &cplen);
|
||||
while (compat && *compat && cplen > 0) {
|
||||
if (add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat))
|
||||
return -ENOMEM;
|
||||
|
|
|
@ -195,7 +195,7 @@ EXPORT_SYMBOL(of_platform_bus_probe);
|
|||
|
||||
static int of_dev_node_match(struct device *dev, void *data)
|
||||
{
|
||||
return to_of_device(dev)->node == data;
|
||||
return to_of_device(dev)->dev.of_node == data;
|
||||
}
|
||||
|
||||
struct of_device *of_find_device_by_node(struct device_node *np)
|
||||
|
@ -213,7 +213,7 @@ EXPORT_SYMBOL(of_find_device_by_node);
|
|||
static int of_dev_phandle_match(struct device *dev, void *data)
|
||||
{
|
||||
phandle *ph = data;
|
||||
return to_of_device(dev)->node->phandle == *ph;
|
||||
return to_of_device(dev)->dev.of_node->phandle == *ph;
|
||||
}
|
||||
|
||||
struct of_device *of_find_device_by_phandle(phandle ph)
|
||||
|
@ -246,10 +246,10 @@ static int __devinit of_pci_phb_probe(struct of_device *dev,
|
|||
if (ppc_md.pci_setup_phb == NULL)
|
||||
return -ENODEV;
|
||||
|
||||
printk(KERN_INFO "Setting up PCI bus %s\n", dev->node->full_name);
|
||||
pr_info("Setting up PCI bus %s\n", dev->dev.of_node->full_name);
|
||||
|
||||
/* Alloc and setup PHB data structure */
|
||||
phb = pcibios_alloc_controller(dev->node);
|
||||
phb = pcibios_alloc_controller(dev->dev.of_node);
|
||||
if (!phb)
|
||||
return -ENODEV;
|
||||
|
||||
|
@ -263,19 +263,19 @@ static int __devinit of_pci_phb_probe(struct of_device *dev,
|
|||
}
|
||||
|
||||
/* Process "ranges" property */
|
||||
pci_process_bridge_OF_ranges(phb, dev->node, 0);
|
||||
pci_process_bridge_OF_ranges(phb, dev->dev.of_node, 0);
|
||||
|
||||
/* Init pci_dn data structures */
|
||||
pci_devs_phb_init_dynamic(phb);
|
||||
|
||||
/* Register devices with EEH */
|
||||
#ifdef CONFIG_EEH
|
||||
if (dev->node->child)
|
||||
eeh_add_device_tree_early(dev->node);
|
||||
if (dev->dev.of_node->child)
|
||||
eeh_add_device_tree_early(dev->dev.of_node);
|
||||
#endif /* CONFIG_EEH */
|
||||
|
||||
/* Scan the bus */
|
||||
pcibios_scan_phb(phb, dev->node);
|
||||
pcibios_scan_phb(phb, dev->dev.of_node);
|
||||
if (phb->bus == NULL)
|
||||
return -ENXIO;
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@ static int __devinit mpc52xx_wkup_gpiochip_probe(struct of_device *ofdev,
|
|||
ofchip->gc.get = mpc52xx_wkup_gpio_get;
|
||||
ofchip->gc.set = mpc52xx_wkup_gpio_set;
|
||||
|
||||
ret = of_mm_gpiochip_add(ofdev->node, &chip->mmchip);
|
||||
ret = of_mm_gpiochip_add(ofdev->dev.of_node, &chip->mmchip);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
@ -329,7 +329,7 @@ static int __devinit mpc52xx_simple_gpiochip_probe(struct of_device *ofdev,
|
|||
ofchip->gc.get = mpc52xx_simple_gpio_get;
|
||||
ofchip->gc.set = mpc52xx_simple_gpio_set;
|
||||
|
||||
ret = of_mm_gpiochip_add(ofdev->node, &chip->mmchip);
|
||||
ret = of_mm_gpiochip_add(ofdev->dev.of_node, &chip->mmchip);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
|
@ -734,8 +734,8 @@ static int __devinit mpc52xx_gpt_probe(struct of_device *ofdev,
|
|||
|
||||
spin_lock_init(&gpt->lock);
|
||||
gpt->dev = &ofdev->dev;
|
||||
gpt->ipb_freq = mpc5xxx_get_bus_frequency(ofdev->node);
|
||||
gpt->regs = of_iomap(ofdev->node, 0);
|
||||
gpt->ipb_freq = mpc5xxx_get_bus_frequency(ofdev->dev.of_node);
|
||||
gpt->regs = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!gpt->regs) {
|
||||
kfree(gpt);
|
||||
return -ENOMEM;
|
||||
|
@ -743,21 +743,21 @@ static int __devinit mpc52xx_gpt_probe(struct of_device *ofdev,
|
|||
|
||||
dev_set_drvdata(&ofdev->dev, gpt);
|
||||
|
||||
mpc52xx_gpt_gpio_setup(gpt, ofdev->node);
|
||||
mpc52xx_gpt_irq_setup(gpt, ofdev->node);
|
||||
mpc52xx_gpt_gpio_setup(gpt, ofdev->dev.of_node);
|
||||
mpc52xx_gpt_irq_setup(gpt, ofdev->dev.of_node);
|
||||
|
||||
mutex_lock(&mpc52xx_gpt_list_mutex);
|
||||
list_add(&gpt->list, &mpc52xx_gpt_list);
|
||||
mutex_unlock(&mpc52xx_gpt_list_mutex);
|
||||
|
||||
/* check if this device could be a watchdog */
|
||||
if (of_get_property(ofdev->node, "fsl,has-wdt", NULL) ||
|
||||
of_get_property(ofdev->node, "has-wdt", NULL)) {
|
||||
if (of_get_property(ofdev->dev.of_node, "fsl,has-wdt", NULL) ||
|
||||
of_get_property(ofdev->dev.of_node, "has-wdt", NULL)) {
|
||||
const u32 *on_boot_wdt;
|
||||
|
||||
gpt->wdt_mode = MPC52xx_GPT_CAN_WDT;
|
||||
on_boot_wdt = of_get_property(ofdev->node, "fsl,wdt-on-boot",
|
||||
NULL);
|
||||
on_boot_wdt = of_get_property(ofdev->dev.of_node,
|
||||
"fsl,wdt-on-boot", NULL);
|
||||
if (on_boot_wdt) {
|
||||
dev_info(gpt->dev, "used as watchdog\n");
|
||||
gpt->wdt_mode |= MPC52xx_GPT_IS_WDT;
|
||||
|
|
|
@ -445,14 +445,14 @@ mpc52xx_lpbfifo_probe(struct of_device *op, const struct of_device_id *match)
|
|||
if (lpbfifo.dev != NULL)
|
||||
return -ENOSPC;
|
||||
|
||||
lpbfifo.irq = irq_of_parse_and_map(op->node, 0);
|
||||
lpbfifo.irq = irq_of_parse_and_map(op->dev.of_node, 0);
|
||||
if (!lpbfifo.irq)
|
||||
return -ENODEV;
|
||||
|
||||
if (of_address_to_resource(op->node, 0, &res))
|
||||
if (of_address_to_resource(op->dev.of_node, 0, &res))
|
||||
return -ENODEV;
|
||||
lpbfifo.regs_phys = res.start;
|
||||
lpbfifo.regs = of_iomap(op->node, 0);
|
||||
lpbfifo.regs = of_iomap(op->dev.of_node, 0);
|
||||
if (!lpbfifo.regs)
|
||||
return -ENOMEM;
|
||||
|
||||
|
|
|
@ -119,12 +119,12 @@ static int __devinit ep8248e_mdio_probe(struct of_device *ofdev,
|
|||
struct device_node *node;
|
||||
int ret;
|
||||
|
||||
node = of_get_parent(ofdev->node);
|
||||
node = of_get_parent(ofdev->dev.of_node);
|
||||
of_node_put(node);
|
||||
if (node != ep8248e_bcsr_node)
|
||||
return -ENODEV;
|
||||
|
||||
ret = of_address_to_resource(ofdev->node, 0, &res);
|
||||
ret = of_address_to_resource(ofdev->dev.of_node, 0, &res);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
@ -142,7 +142,7 @@ static int __devinit ep8248e_mdio_probe(struct of_device *ofdev,
|
|||
bus->parent = &ofdev->dev;
|
||||
snprintf(bus->id, MII_BUS_ID_SIZE, "%x", res.start);
|
||||
|
||||
ret = of_mdiobus_register(bus, ofdev->node);
|
||||
ret = of_mdiobus_register(bus, ofdev->dev.of_node);
|
||||
if (ret)
|
||||
goto err_free_irq;
|
||||
|
||||
|
|
|
@ -321,7 +321,7 @@ static struct platform_suspend_ops mpc83xx_suspend_ops = {
|
|||
static int pmc_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct resource res;
|
||||
struct pmc_type *type = match->data;
|
||||
int ret = 0;
|
||||
|
|
|
@ -345,7 +345,7 @@ static int axon_msi_shutdown(struct of_device *device)
|
|||
static int axon_msi_probe(struct of_device *device,
|
||||
const struct of_device_id *device_id)
|
||||
{
|
||||
struct device_node *dn = device->node;
|
||||
struct device_node *dn = device->dev.of_node;
|
||||
struct axon_msic *msic;
|
||||
unsigned int virq;
|
||||
int dcr_base, dcr_len;
|
||||
|
|
|
@ -220,7 +220,7 @@ static int __devinit gpio_mdio_probe(struct of_device *ofdev,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
struct device *dev = &ofdev->dev;
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct mii_bus *new_bus;
|
||||
struct gpio_priv *priv;
|
||||
const unsigned int *prop;
|
||||
|
|
|
@ -185,7 +185,7 @@ axon_ram_probe(struct of_device *device, const struct of_device_id *device_id)
|
|||
axon_ram_bank_id++;
|
||||
|
||||
dev_info(&device->dev, "Found memory controller on %s\n",
|
||||
device->node->full_name);
|
||||
device->dev.of_node->full_name);
|
||||
|
||||
bank = kzalloc(sizeof(struct axon_ram_bank), GFP_KERNEL);
|
||||
if (bank == NULL) {
|
||||
|
@ -198,7 +198,7 @@ axon_ram_probe(struct of_device *device, const struct of_device_id *device_id)
|
|||
|
||||
bank->device = device;
|
||||
|
||||
if (of_address_to_resource(device->node, 0, &resource) != 0) {
|
||||
if (of_address_to_resource(device->dev.of_node, 0, &resource) != 0) {
|
||||
dev_err(&device->dev, "Cannot access device tree\n");
|
||||
rc = -EFAULT;
|
||||
goto failed;
|
||||
|
@ -253,7 +253,7 @@ axon_ram_probe(struct of_device *device, const struct of_device_id *device_id)
|
|||
blk_queue_logical_block_size(bank->disk->queue, AXON_RAM_SECTOR_SIZE);
|
||||
add_disk(bank->disk);
|
||||
|
||||
bank->irq_id = irq_of_parse_and_map(device->node, 0);
|
||||
bank->irq_id = irq_of_parse_and_map(device->dev.of_node, 0);
|
||||
if (bank->irq_id == NO_IRQ) {
|
||||
dev_err(&device->dev, "Cannot access ECC interrupt ID\n");
|
||||
rc = -EFAULT;
|
||||
|
|
|
@ -377,7 +377,7 @@ mpc52xx_bcom_probe(struct of_device *op, const struct of_device_id *match)
|
|||
printk(KERN_INFO "DMA: MPC52xx BestComm driver\n");
|
||||
|
||||
/* Get the bestcomm node */
|
||||
of_node_get(op->node);
|
||||
of_node_get(op->dev.of_node);
|
||||
|
||||
/* Prepare SRAM */
|
||||
ofn_sram = of_find_matching_node(NULL, mpc52xx_sram_ids);
|
||||
|
@ -406,10 +406,10 @@ mpc52xx_bcom_probe(struct of_device *op, const struct of_device_id *match)
|
|||
}
|
||||
|
||||
/* Save the node */
|
||||
bcom_eng->ofnode = op->node;
|
||||
bcom_eng->ofnode = op->dev.of_node;
|
||||
|
||||
/* Get, reserve & map io */
|
||||
if (of_address_to_resource(op->node, 0, &res_bcom)) {
|
||||
if (of_address_to_resource(op->dev.of_node, 0, &res_bcom)) {
|
||||
printk(KERN_ERR DRIVER_NAME ": "
|
||||
"Can't get resource\n");
|
||||
rv = -EINVAL;
|
||||
|
@ -453,7 +453,7 @@ error_sramclean:
|
|||
kfree(bcom_eng);
|
||||
bcom_sram_cleanup();
|
||||
error_ofput:
|
||||
of_node_put(op->node);
|
||||
of_node_put(op->dev.of_node);
|
||||
|
||||
printk(KERN_ERR "DMA: MPC52xx BestComm init failed !\n");
|
||||
|
||||
|
|
|
@ -249,7 +249,7 @@ static int __devinit fsl_of_msi_probe(struct of_device *dev,
|
|||
goto error_out;
|
||||
}
|
||||
|
||||
msi->irqhost = irq_alloc_host(dev->node, IRQ_HOST_MAP_LINEAR,
|
||||
msi->irqhost = irq_alloc_host(dev->dev.of_node, IRQ_HOST_MAP_LINEAR,
|
||||
NR_MSI_IRQS, &fsl_msi_host_ops, 0);
|
||||
|
||||
if (msi->irqhost == NULL) {
|
||||
|
@ -259,10 +259,10 @@ static int __devinit fsl_of_msi_probe(struct of_device *dev,
|
|||
}
|
||||
|
||||
/* Get the MSI reg base */
|
||||
err = of_address_to_resource(dev->node, 0, &res);
|
||||
err = of_address_to_resource(dev->dev.of_node, 0, &res);
|
||||
if (err) {
|
||||
dev_err(&dev->dev, "%s resource error!\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
goto error_out;
|
||||
}
|
||||
|
||||
|
@ -285,16 +285,16 @@ static int __devinit fsl_of_msi_probe(struct of_device *dev,
|
|||
goto error_out;
|
||||
}
|
||||
|
||||
p = of_get_property(dev->node, "interrupts", &count);
|
||||
p = of_get_property(dev->dev.of_node, "interrupts", &count);
|
||||
if (!p) {
|
||||
dev_err(&dev->dev, "no interrupts property found on %s\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
err = -ENODEV;
|
||||
goto error_out;
|
||||
}
|
||||
if (count % 8 != 0) {
|
||||
dev_err(&dev->dev, "Malformed interrupts property on %s\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
err = -EINVAL;
|
||||
goto error_out;
|
||||
}
|
||||
|
@ -303,7 +303,7 @@ static int __devinit fsl_of_msi_probe(struct of_device *dev,
|
|||
for (i = 0; i < count / 2; i++) {
|
||||
if (i > NR_MSI_REG)
|
||||
break;
|
||||
virt_msir = irq_of_parse_and_map(dev->node, i);
|
||||
virt_msir = irq_of_parse_and_map(dev->dev.of_node, i);
|
||||
if (virt_msir != NO_IRQ) {
|
||||
set_irq_data(virt_msir, (void *)i);
|
||||
set_irq_chained_handler(virt_msir, fsl_msi_cascade);
|
||||
|
|
|
@ -60,7 +60,7 @@ static struct platform_suspend_ops pmc_suspend_ops = {
|
|||
|
||||
static int pmc_probe(struct of_device *ofdev, const struct of_device_id *id)
|
||||
{
|
||||
pmc_regs = of_iomap(ofdev->node, 0);
|
||||
pmc_regs = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!pmc_regs)
|
||||
return -ENOMEM;
|
||||
|
||||
|
|
|
@ -1015,41 +1015,41 @@ int fsl_rio_setup(struct of_device *dev)
|
|||
u64 law_start, law_size;
|
||||
int paw, aw, sw;
|
||||
|
||||
if (!dev->node) {
|
||||
if (!dev->dev.of_node) {
|
||||
dev_err(&dev->dev, "Device OF-Node is NULL");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
rc = of_address_to_resource(dev->node, 0, ®s);
|
||||
rc = of_address_to_resource(dev->dev.of_node, 0, ®s);
|
||||
if (rc) {
|
||||
dev_err(&dev->dev, "Can't get %s property 'reg'\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
return -EFAULT;
|
||||
}
|
||||
dev_info(&dev->dev, "Of-device full name %s\n", dev->node->full_name);
|
||||
dev_info(&dev->dev, "Of-device full name %s\n", dev->dev.of_node->full_name);
|
||||
dev_info(&dev->dev, "Regs: %pR\n", ®s);
|
||||
|
||||
dt_range = of_get_property(dev->node, "ranges", &rlen);
|
||||
dt_range = of_get_property(dev->dev.of_node, "ranges", &rlen);
|
||||
if (!dt_range) {
|
||||
dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
/* Get node address wide */
|
||||
cell = of_get_property(dev->node, "#address-cells", NULL);
|
||||
cell = of_get_property(dev->dev.of_node, "#address-cells", NULL);
|
||||
if (cell)
|
||||
aw = *cell;
|
||||
else
|
||||
aw = of_n_addr_cells(dev->node);
|
||||
aw = of_n_addr_cells(dev->dev.of_node);
|
||||
/* Get node size wide */
|
||||
cell = of_get_property(dev->node, "#size-cells", NULL);
|
||||
cell = of_get_property(dev->dev.of_node, "#size-cells", NULL);
|
||||
if (cell)
|
||||
sw = *cell;
|
||||
else
|
||||
sw = of_n_size_cells(dev->node);
|
||||
sw = of_n_size_cells(dev->dev.of_node);
|
||||
/* Get parent address wide wide */
|
||||
paw = of_n_addr_cells(dev->node);
|
||||
paw = of_n_addr_cells(dev->dev.of_node);
|
||||
|
||||
law_start = of_read_number(dt_range + aw, paw);
|
||||
law_size = of_read_number(dt_range + aw + paw, sw);
|
||||
|
@ -1089,9 +1089,9 @@ int fsl_rio_setup(struct of_device *dev)
|
|||
port->iores.flags = IORESOURCE_MEM;
|
||||
port->iores.name = "rio_io_win";
|
||||
|
||||
priv->bellirq = irq_of_parse_and_map(dev->node, 2);
|
||||
priv->txirq = irq_of_parse_and_map(dev->node, 3);
|
||||
priv->rxirq = irq_of_parse_and_map(dev->node, 4);
|
||||
priv->bellirq = irq_of_parse_and_map(dev->dev.of_node, 2);
|
||||
priv->txirq = irq_of_parse_and_map(dev->dev.of_node, 3);
|
||||
priv->rxirq = irq_of_parse_and_map(dev->dev.of_node, 4);
|
||||
dev_info(&dev->dev, "bellirq: %d, txirq: %d, rxirq %d\n", priv->bellirq,
|
||||
priv->txirq, priv->rxirq);
|
||||
|
||||
|
@ -1195,7 +1195,7 @@ static int __devinit fsl_of_rio_rpn_probe(struct of_device *dev,
|
|||
{
|
||||
int rc;
|
||||
printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
|
||||
rc = fsl_rio_setup(dev);
|
||||
if (rc)
|
||||
|
|
|
@ -124,7 +124,7 @@ static void pmi_notify_handlers(struct work_struct *work)
|
|||
static int pmi_of_probe(struct of_device *dev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = dev->node;
|
||||
struct device_node *np = dev->dev.of_node;
|
||||
int rc;
|
||||
|
||||
if (data) {
|
||||
|
|
|
@ -18,7 +18,7 @@ static inline int fb_is_primary_device(struct fb_info *info)
|
|||
struct device *dev = info->device;
|
||||
struct device_node *node;
|
||||
|
||||
node = dev->archdata.prom_node;
|
||||
node = dev->of_node;
|
||||
if (node &&
|
||||
node == of_console_device)
|
||||
return 1;
|
||||
|
|
|
@ -589,7 +589,7 @@ static unsigned long __init sun_floppy_init(void)
|
|||
if (!op)
|
||||
return 0;
|
||||
|
||||
state_prop = of_get_property(op->node, "status", NULL);
|
||||
state_prop = of_get_property(op->dev.of_node, "status", NULL);
|
||||
if (state_prop && !strncmp(state_prop, "disabled", 8))
|
||||
return 0;
|
||||
|
||||
|
@ -716,7 +716,7 @@ static unsigned long __init sun_floppy_init(void)
|
|||
|
||||
return sun_floppy_types[0];
|
||||
}
|
||||
prop = of_get_property(op->node, "status", NULL);
|
||||
prop = of_get_property(op->dev.of_node, "status", NULL);
|
||||
if (prop && !strncmp(state, "disabled", 8))
|
||||
return 0;
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ static int __devinit ecpp_probe(struct of_device *op, const struct of_device_id
|
|||
struct parport *p;
|
||||
int slot, err;
|
||||
|
||||
parent = op->node->parent;
|
||||
parent = op->dev.of_node->parent;
|
||||
if (!strcmp(parent->name, "dma")) {
|
||||
p = parport_pc_probe_port(base, base + 0x400,
|
||||
op->irqs[0], PARPORT_DMA_NOFIFO,
|
||||
|
|
|
@ -104,7 +104,7 @@ MODULE_DEVICE_TABLE(of, auxio_match);
|
|||
|
||||
static int __devinit auxio_probe(struct of_device *dev, const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = dev->node;
|
||||
struct device_node *dp = dev->dev.of_node;
|
||||
unsigned long size;
|
||||
|
||||
if (!strcmp(dp->parent->name, "ebus")) {
|
||||
|
|
|
@ -168,7 +168,7 @@ static int __devinit fhc_probe(struct of_device *op,
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (!strcmp(op->node->parent->name, "central"))
|
||||
if (!strcmp(op->dev.of_node->parent->name, "central"))
|
||||
p->central = true;
|
||||
|
||||
p->pregs = of_ioremap(&op->resource[0], 0,
|
||||
|
@ -183,7 +183,7 @@ static int __devinit fhc_probe(struct of_device *op,
|
|||
reg = upa_readl(p->pregs + FHC_PREGS_BSR);
|
||||
p->board_num = ((reg >> 16) & 1) | ((reg >> 12) & 0x0e);
|
||||
} else {
|
||||
p->board_num = of_getintprop_default(op->node, "board#", -1);
|
||||
p->board_num = of_getintprop_default(op->dev.of_node, "board#", -1);
|
||||
if (p->board_num == -1) {
|
||||
printk(KERN_ERR "fhc: No board# property\n");
|
||||
goto out_unmap_pregs;
|
||||
|
|
|
@ -425,7 +425,7 @@ static int __devinit jbusmc_probe(struct of_device *op,
|
|||
INIT_LIST_HEAD(&p->list);
|
||||
|
||||
err = -ENODEV;
|
||||
prop = of_get_property(op->node, "portid", &len);
|
||||
prop = of_get_property(op->dev.of_node, "portid", &len);
|
||||
if (!prop || len != 4) {
|
||||
printk(KERN_ERR PFX "Cannot find portid.\n");
|
||||
goto out_free;
|
||||
|
@ -433,7 +433,7 @@ static int __devinit jbusmc_probe(struct of_device *op,
|
|||
|
||||
p->portid = *prop;
|
||||
|
||||
prop = of_get_property(op->node, "memory-control-register-1", &len);
|
||||
prop = of_get_property(op->dev.of_node, "memory-control-register-1", &len);
|
||||
if (!prop || len != 8) {
|
||||
printk(KERN_ERR PFX "Cannot get memory control register 1.\n");
|
||||
goto out_free;
|
||||
|
@ -449,7 +449,7 @@ static int __devinit jbusmc_probe(struct of_device *op,
|
|||
}
|
||||
|
||||
err = -ENODEV;
|
||||
ml = of_get_property(op->node, "memory-layout", &p->layout_len);
|
||||
ml = of_get_property(op->dev.of_node, "memory-layout", &p->layout_len);
|
||||
if (!ml) {
|
||||
printk(KERN_ERR PFX "Cannot get memory layout property.\n");
|
||||
goto out_iounmap;
|
||||
|
@ -466,7 +466,7 @@ static int __devinit jbusmc_probe(struct of_device *op,
|
|||
mc_list_add(&p->list);
|
||||
|
||||
printk(KERN_INFO PFX "UltraSPARC-IIIi memory controller at %s\n",
|
||||
op->node->full_name);
|
||||
op->dev.of_node->full_name);
|
||||
|
||||
dev_set_drvdata(&op->dev, p);
|
||||
|
||||
|
@ -693,7 +693,7 @@ static void chmc_fetch_decode_regs(struct chmc *p)
|
|||
static int __devinit chmc_probe(struct of_device *op,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
unsigned long ver;
|
||||
const void *pval;
|
||||
int len, portid;
|
||||
|
|
|
@ -290,7 +290,7 @@ static void *sbus_alloc_coherent(struct device *dev, size_t len,
|
|||
if (mmu_map_dma_area(dev, dma_addrp, va, res->start, len_total) != 0)
|
||||
goto err_noiommu;
|
||||
|
||||
res->name = op->node->name;
|
||||
res->name = op->dev.of_node->name;
|
||||
|
||||
return (void *)(unsigned long)res->start;
|
||||
|
||||
|
|
|
@ -254,10 +254,10 @@ static void __init build_device_resources(struct of_device *op,
|
|||
return;
|
||||
|
||||
p_op = to_of_device(parent);
|
||||
bus = of_match_bus(p_op->node);
|
||||
bus->count_cells(op->node, &na, &ns);
|
||||
bus = of_match_bus(p_op->dev.of_node);
|
||||
bus->count_cells(op->dev.of_node, &na, &ns);
|
||||
|
||||
preg = of_get_property(op->node, bus->addr_prop_name, &num_reg);
|
||||
preg = of_get_property(op->dev.of_node, bus->addr_prop_name, &num_reg);
|
||||
if (!preg || num_reg == 0)
|
||||
return;
|
||||
|
||||
|
@ -271,8 +271,8 @@ static void __init build_device_resources(struct of_device *op,
|
|||
struct resource *r = &op->resource[index];
|
||||
u32 addr[OF_MAX_ADDR_CELLS];
|
||||
const u32 *reg = (preg + (index * ((na + ns) * 4)));
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *pp = p_op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct device_node *pp = p_op->dev.of_node;
|
||||
struct of_bus *pbus, *dbus;
|
||||
u64 size, result = OF_BAD_ADDR;
|
||||
unsigned long flags;
|
||||
|
@ -321,7 +321,7 @@ static void __init build_device_resources(struct of_device *op,
|
|||
|
||||
if (of_resource_verbose)
|
||||
printk("%s reg[%d] -> %llx\n",
|
||||
op->node->full_name, index,
|
||||
op->dev.of_node->full_name, index,
|
||||
result);
|
||||
|
||||
if (result != OF_BAD_ADDR) {
|
||||
|
@ -329,7 +329,7 @@ static void __init build_device_resources(struct of_device *op,
|
|||
r->end = result + size - 1;
|
||||
r->flags = flags | ((result >> 32ULL) & 0xffUL);
|
||||
}
|
||||
r->name = op->node->name;
|
||||
r->name = op->dev.of_node->name;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -323,10 +323,10 @@ static void __init build_device_resources(struct of_device *op,
|
|||
return;
|
||||
|
||||
p_op = to_of_device(parent);
|
||||
bus = of_match_bus(p_op->node);
|
||||
bus->count_cells(op->node, &na, &ns);
|
||||
bus = of_match_bus(p_op->dev.of_node);
|
||||
bus->count_cells(op->dev.of_node, &na, &ns);
|
||||
|
||||
preg = of_get_property(op->node, bus->addr_prop_name, &num_reg);
|
||||
preg = of_get_property(op->dev.of_node, bus->addr_prop_name, &num_reg);
|
||||
if (!preg || num_reg == 0)
|
||||
return;
|
||||
|
||||
|
@ -340,7 +340,7 @@ static void __init build_device_resources(struct of_device *op,
|
|||
if (num_reg > PROMREG_MAX) {
|
||||
printk(KERN_WARNING "%s: Too many regs (%d), "
|
||||
"limiting to %d.\n",
|
||||
op->node->full_name, num_reg, PROMREG_MAX);
|
||||
op->dev.of_node->full_name, num_reg, PROMREG_MAX);
|
||||
num_reg = PROMREG_MAX;
|
||||
}
|
||||
|
||||
|
@ -348,8 +348,8 @@ static void __init build_device_resources(struct of_device *op,
|
|||
struct resource *r = &op->resource[index];
|
||||
u32 addr[OF_MAX_ADDR_CELLS];
|
||||
const u32 *reg = (preg + (index * ((na + ns) * 4)));
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *pp = p_op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct device_node *pp = p_op->dev.of_node;
|
||||
struct of_bus *pbus, *dbus;
|
||||
u64 size, result = OF_BAD_ADDR;
|
||||
unsigned long flags;
|
||||
|
@ -397,7 +397,7 @@ static void __init build_device_resources(struct of_device *op,
|
|||
|
||||
if (of_resource_verbose)
|
||||
printk("%s reg[%d] -> %llx\n",
|
||||
op->node->full_name, index,
|
||||
op->dev.of_node->full_name, index,
|
||||
result);
|
||||
|
||||
if (result != OF_BAD_ADDR) {
|
||||
|
@ -408,7 +408,7 @@ static void __init build_device_resources(struct of_device *op,
|
|||
r->end = result + size - 1;
|
||||
r->flags = flags;
|
||||
}
|
||||
r->name = op->node->name;
|
||||
r->name = op->dev.of_node->name;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -530,7 +530,7 @@ static unsigned int __init build_one_device_irq(struct of_device *op,
|
|||
struct device *parent,
|
||||
unsigned int irq)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct device_node *pp, *ip;
|
||||
unsigned int orig_irq = irq;
|
||||
int nid;
|
||||
|
@ -575,7 +575,7 @@ static unsigned int __init build_one_device_irq(struct of_device *op,
|
|||
|
||||
if (of_irq_verbose)
|
||||
printk("%s: Apply [%s:%x] imap --> [%s:%x]\n",
|
||||
op->node->full_name,
|
||||
op->dev.of_node->full_name,
|
||||
pp->full_name, this_orig_irq,
|
||||
(iret ? iret->full_name : "NULL"), irq);
|
||||
|
||||
|
@ -594,7 +594,7 @@ static unsigned int __init build_one_device_irq(struct of_device *op,
|
|||
if (of_irq_verbose)
|
||||
printk("%s: PCI swizzle [%s] "
|
||||
"%x --> %x\n",
|
||||
op->node->full_name,
|
||||
op->dev.of_node->full_name,
|
||||
pp->full_name, this_orig_irq,
|
||||
irq);
|
||||
|
||||
|
@ -611,11 +611,11 @@ static unsigned int __init build_one_device_irq(struct of_device *op,
|
|||
if (!ip)
|
||||
return orig_irq;
|
||||
|
||||
irq = ip->irq_trans->irq_build(op->node, irq,
|
||||
irq = ip->irq_trans->irq_build(op->dev.of_node, irq,
|
||||
ip->irq_trans->data);
|
||||
if (of_irq_verbose)
|
||||
printk("%s: Apply IRQ trans [%s] %x --> %x\n",
|
||||
op->node->full_name, ip->full_name, orig_irq, irq);
|
||||
op->dev.of_node->full_name, ip->full_name, orig_irq, irq);
|
||||
|
||||
out:
|
||||
nid = of_node_to_nid(dp);
|
||||
|
|
|
@ -16,7 +16,7 @@ static int node_match(struct device *dev, void *data)
|
|||
struct of_device *op = to_of_device(dev);
|
||||
struct device_node *dp = data;
|
||||
|
||||
return (op->node == dp);
|
||||
return (op->dev.of_node == dp);
|
||||
}
|
||||
|
||||
struct of_device *of_find_device_by_node(struct device_node *dp)
|
||||
|
@ -48,7 +48,7 @@ EXPORT_SYMBOL(irq_of_parse_and_map);
|
|||
void of_propagate_archdata(struct of_device *bus)
|
||||
{
|
||||
struct dev_archdata *bus_sd = &bus->dev.archdata;
|
||||
struct device_node *bus_dp = bus->node;
|
||||
struct device_node *bus_dp = bus->dev.of_node;
|
||||
struct device_node *dp;
|
||||
|
||||
for (dp = bus_dp->child; dp; dp = dp->sibling) {
|
||||
|
|
|
@ -654,7 +654,7 @@ show_pciobppath_attr(struct device * dev, struct device_attribute * attr, char *
|
|||
struct device_node *dp;
|
||||
|
||||
pdev = to_pci_dev(dev);
|
||||
dp = pdev->dev.archdata.prom_node;
|
||||
dp = pdev->dev.of_node;
|
||||
|
||||
return snprintf (buf, PAGE_SIZE, "%s\n", dp->full_name);
|
||||
}
|
||||
|
@ -684,7 +684,7 @@ static void __devinit pci_bus_register_of_sysfs(struct pci_bus *bus)
|
|||
struct pci_bus * __devinit pci_scan_one_pbm(struct pci_pbm_info *pbm,
|
||||
struct device *parent)
|
||||
{
|
||||
struct device_node *node = pbm->op->node;
|
||||
struct device_node *node = pbm->op->dev.of_node;
|
||||
struct pci_bus *bus;
|
||||
|
||||
printk("PCI: Scanning PBM %s\n", node->full_name);
|
||||
|
@ -1023,7 +1023,7 @@ void arch_teardown_msi_irq(unsigned int virt_irq)
|
|||
|
||||
struct device_node *pci_device_to_OF_node(struct pci_dev *pdev)
|
||||
{
|
||||
return pdev->dev.archdata.prom_node;
|
||||
return pdev->dev.of_node;
|
||||
}
|
||||
EXPORT_SYMBOL(pci_device_to_OF_node);
|
||||
|
||||
|
@ -1152,15 +1152,13 @@ static int __init of_pci_slot_init(void)
|
|||
struct device_node *node;
|
||||
|
||||
if (pbus->self) {
|
||||
struct dev_archdata *sd = pbus->self->sysdata;
|
||||
|
||||
/* PCI->PCI bridge */
|
||||
node = sd->prom_node;
|
||||
node = pbus->self->dev.of_node;
|
||||
} else {
|
||||
struct pci_pbm_info *pbm = pbus->sysdata;
|
||||
|
||||
/* Host PCI controller */
|
||||
node = pbm->op->node;
|
||||
node = pbm->op->dev.of_node;
|
||||
}
|
||||
|
||||
pci_bus_slot_names(node, pbus);
|
||||
|
|
|
@ -314,12 +314,12 @@ struct pci_ops sun4v_pci_ops = {
|
|||
|
||||
void pci_get_pbm_props(struct pci_pbm_info *pbm)
|
||||
{
|
||||
const u32 *val = of_get_property(pbm->op->node, "bus-range", NULL);
|
||||
const u32 *val = of_get_property(pbm->op->dev.of_node, "bus-range", NULL);
|
||||
|
||||
pbm->pci_first_busno = val[0];
|
||||
pbm->pci_last_busno = val[1];
|
||||
|
||||
val = of_get_property(pbm->op->node, "ino-bitmap", NULL);
|
||||
val = of_get_property(pbm->op->dev.of_node, "ino-bitmap", NULL);
|
||||
if (val) {
|
||||
pbm->ino_bitmap = (((u64)val[1] << 32UL) |
|
||||
((u64)val[0] << 0UL));
|
||||
|
@ -365,7 +365,8 @@ static void pci_register_legacy_regions(struct resource *io_res,
|
|||
|
||||
static void pci_register_iommu_region(struct pci_pbm_info *pbm)
|
||||
{
|
||||
const u32 *vdma = of_get_property(pbm->op->node, "virtual-dma", NULL);
|
||||
const u32 *vdma = of_get_property(pbm->op->dev.of_node, "virtual-dma",
|
||||
NULL);
|
||||
|
||||
if (vdma) {
|
||||
struct resource *rp = kzalloc(sizeof(*rp), GFP_KERNEL);
|
||||
|
@ -394,7 +395,7 @@ void pci_determine_mem_io_space(struct pci_pbm_info *pbm)
|
|||
int num_pbm_ranges;
|
||||
|
||||
saw_mem = saw_io = 0;
|
||||
pbm_ranges = of_get_property(pbm->op->node, "ranges", &i);
|
||||
pbm_ranges = of_get_property(pbm->op->dev.of_node, "ranges", &i);
|
||||
if (!pbm_ranges) {
|
||||
prom_printf("PCI: Fatal error, missing PBM ranges property "
|
||||
" for %s\n",
|
||||
|
|
|
@ -413,7 +413,7 @@ static int __devinit pci_fire_pbm_init(struct pci_pbm_info *pbm,
|
|||
struct of_device *op, u32 portid)
|
||||
{
|
||||
const struct linux_prom64_registers *regs;
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
int err;
|
||||
|
||||
pbm->numa_node = -1;
|
||||
|
@ -458,7 +458,7 @@ static int __devinit pci_fire_pbm_init(struct pci_pbm_info *pbm,
|
|||
static int __devinit fire_probe(struct of_device *op,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct pci_pbm_info *pbm;
|
||||
struct iommu *iommu;
|
||||
u32 portid;
|
||||
|
|
|
@ -324,7 +324,7 @@ void sparc64_pbm_msi_init(struct pci_pbm_info *pbm,
|
|||
const u32 *val;
|
||||
int len;
|
||||
|
||||
val = of_get_property(pbm->op->node, "#msi-eqs", &len);
|
||||
val = of_get_property(pbm->op->dev.of_node, "#msi-eqs", &len);
|
||||
if (!val || len != 4)
|
||||
goto no_msi;
|
||||
pbm->msiq_num = *val;
|
||||
|
@ -347,16 +347,16 @@ void sparc64_pbm_msi_init(struct pci_pbm_info *pbm,
|
|||
u32 msi64_len;
|
||||
} *arng;
|
||||
|
||||
val = of_get_property(pbm->op->node, "msi-eq-size", &len);
|
||||
val = of_get_property(pbm->op->dev.of_node, "msi-eq-size", &len);
|
||||
if (!val || len != 4)
|
||||
goto no_msi;
|
||||
|
||||
pbm->msiq_ent_count = *val;
|
||||
|
||||
mqp = of_get_property(pbm->op->node,
|
||||
mqp = of_get_property(pbm->op->dev.of_node,
|
||||
"msi-eq-to-devino", &len);
|
||||
if (!mqp)
|
||||
mqp = of_get_property(pbm->op->node,
|
||||
mqp = of_get_property(pbm->op->dev.of_node,
|
||||
"msi-eq-devino", &len);
|
||||
if (!mqp || len != sizeof(struct msiq_prop))
|
||||
goto no_msi;
|
||||
|
@ -364,27 +364,27 @@ void sparc64_pbm_msi_init(struct pci_pbm_info *pbm,
|
|||
pbm->msiq_first = mqp->first_msiq;
|
||||
pbm->msiq_first_devino = mqp->first_devino;
|
||||
|
||||
val = of_get_property(pbm->op->node, "#msi", &len);
|
||||
val = of_get_property(pbm->op->dev.of_node, "#msi", &len);
|
||||
if (!val || len != 4)
|
||||
goto no_msi;
|
||||
pbm->msi_num = *val;
|
||||
|
||||
mrng = of_get_property(pbm->op->node, "msi-ranges", &len);
|
||||
mrng = of_get_property(pbm->op->dev.of_node, "msi-ranges", &len);
|
||||
if (!mrng || len != sizeof(struct msi_range_prop))
|
||||
goto no_msi;
|
||||
pbm->msi_first = mrng->first_msi;
|
||||
|
||||
val = of_get_property(pbm->op->node, "msi-data-mask", &len);
|
||||
val = of_get_property(pbm->op->dev.of_node, "msi-data-mask", &len);
|
||||
if (!val || len != 4)
|
||||
goto no_msi;
|
||||
pbm->msi_data_mask = *val;
|
||||
|
||||
val = of_get_property(pbm->op->node, "msix-data-width", &len);
|
||||
val = of_get_property(pbm->op->dev.of_node, "msix-data-width", &len);
|
||||
if (!val || len != 4)
|
||||
goto no_msi;
|
||||
pbm->msix_data_width = *val;
|
||||
|
||||
arng = of_get_property(pbm->op->node, "msi-address-ranges",
|
||||
arng = of_get_property(pbm->op->dev.of_node, "msi-address-ranges",
|
||||
&len);
|
||||
if (!arng || len != sizeof(struct addr_range_prop))
|
||||
goto no_msi;
|
||||
|
|
|
@ -285,7 +285,7 @@ static irqreturn_t psycho_ce_intr(int irq, void *dev_id)
|
|||
#define PSYCHO_ECCCTRL_CE 0x2000000000000000UL /* Enable CE INterrupts */
|
||||
static void psycho_register_error_handlers(struct pci_pbm_info *pbm)
|
||||
{
|
||||
struct of_device *op = of_find_device_by_node(pbm->op->node);
|
||||
struct of_device *op = of_find_device_by_node(pbm->op->dev.of_node);
|
||||
unsigned long base = pbm->controller_regs;
|
||||
u64 tmp;
|
||||
int err;
|
||||
|
@ -507,7 +507,7 @@ static int __devinit psycho_probe(struct of_device *op,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
const struct linux_prom64_registers *pr_regs;
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct pci_pbm_info *pbm;
|
||||
struct iommu *iommu;
|
||||
int is_pbm_a, err;
|
||||
|
|
|
@ -310,7 +310,7 @@ static irqreturn_t sabre_ce_intr(int irq, void *dev_id)
|
|||
|
||||
static void sabre_register_error_handlers(struct pci_pbm_info *pbm)
|
||||
{
|
||||
struct device_node *dp = pbm->op->node;
|
||||
struct device_node *dp = pbm->op->dev.of_node;
|
||||
struct of_device *op;
|
||||
unsigned long base = pbm->controller_regs;
|
||||
u64 tmp;
|
||||
|
@ -456,7 +456,7 @@ static int __devinit sabre_probe(struct of_device *op,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
const struct linux_prom64_registers *pr_regs;
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct pci_pbm_info *pbm;
|
||||
u32 upa_portid, dma_mask;
|
||||
struct iommu *iommu;
|
||||
|
|
|
@ -844,7 +844,7 @@ static int pbm_routes_this_ino(struct pci_pbm_info *pbm, u32 ino)
|
|||
*/
|
||||
static void tomatillo_register_error_handlers(struct pci_pbm_info *pbm)
|
||||
{
|
||||
struct of_device *op = of_find_device_by_node(pbm->op->node);
|
||||
struct of_device *op = of_find_device_by_node(pbm->op->dev.of_node);
|
||||
u64 tmp, err_mask, err_no_mask;
|
||||
int err;
|
||||
|
||||
|
@ -939,7 +939,7 @@ static void tomatillo_register_error_handlers(struct pci_pbm_info *pbm)
|
|||
|
||||
static void schizo_register_error_handlers(struct pci_pbm_info *pbm)
|
||||
{
|
||||
struct of_device *op = of_find_device_by_node(pbm->op->node);
|
||||
struct of_device *op = of_find_device_by_node(pbm->op->dev.of_node);
|
||||
u64 tmp, err_mask, err_no_mask;
|
||||
int err;
|
||||
|
||||
|
@ -1068,7 +1068,7 @@ static void __devinit schizo_scan_bus(struct pci_pbm_info *pbm,
|
|||
{
|
||||
pbm_config_busmastering(pbm);
|
||||
pbm->is_66mhz_capable =
|
||||
(of_find_property(pbm->op->node, "66mhz-capable", NULL)
|
||||
(of_find_property(pbm->op->dev.of_node, "66mhz-capable", NULL)
|
||||
!= NULL);
|
||||
|
||||
pbm->pci_bus = pci_scan_one_pbm(pbm, parent);
|
||||
|
@ -1138,7 +1138,7 @@ static int schizo_pbm_iommu_init(struct pci_pbm_info *pbm)
|
|||
u32 dma_mask;
|
||||
u64 control;
|
||||
|
||||
vdma = of_get_property(pbm->op->node, "virtual-dma", NULL);
|
||||
vdma = of_get_property(pbm->op->dev.of_node, "virtual-dma", NULL);
|
||||
if (!vdma)
|
||||
vdma = vdma_default;
|
||||
|
||||
|
@ -1268,7 +1268,7 @@ static void schizo_pbm_hw_init(struct pci_pbm_info *pbm)
|
|||
pbm->chip_version >= 0x2)
|
||||
tmp |= 0x3UL << SCHIZO_PCICTRL_PTO_SHIFT;
|
||||
|
||||
if (!of_find_property(pbm->op->node, "no-bus-parking", NULL))
|
||||
if (!of_find_property(pbm->op->dev.of_node, "no-bus-parking", NULL))
|
||||
tmp |= SCHIZO_PCICTRL_PARK;
|
||||
else
|
||||
tmp &= ~SCHIZO_PCICTRL_PARK;
|
||||
|
@ -1311,7 +1311,7 @@ static int __devinit schizo_pbm_init(struct pci_pbm_info *pbm,
|
|||
int chip_type)
|
||||
{
|
||||
const struct linux_prom64_registers *regs;
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
const char *chipset_name;
|
||||
int is_pbm_a, err;
|
||||
|
||||
|
@ -1415,7 +1415,7 @@ static struct pci_pbm_info * __devinit schizo_find_sibling(u32 portid,
|
|||
|
||||
static int __devinit __schizo_init(struct of_device *op, unsigned long chip_type)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct pci_pbm_info *pbm;
|
||||
struct iommu *iommu;
|
||||
u32 portid;
|
||||
|
|
|
@ -540,7 +540,7 @@ static void __devinit pci_sun4v_scan_bus(struct pci_pbm_info *pbm,
|
|||
struct property *prop;
|
||||
struct device_node *dp;
|
||||
|
||||
dp = pbm->op->node;
|
||||
dp = pbm->op->dev.of_node;
|
||||
prop = of_find_property(dp, "66mhz-capable", NULL);
|
||||
pbm->is_66mhz_capable = (prop != NULL);
|
||||
pbm->pci_bus = pci_scan_one_pbm(pbm, parent);
|
||||
|
@ -584,7 +584,7 @@ static int __devinit pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
|
|||
u32 dma_mask, dma_offset;
|
||||
const u32 *vdma;
|
||||
|
||||
vdma = of_get_property(pbm->op->node, "virtual-dma", NULL);
|
||||
vdma = of_get_property(pbm->op->dev.of_node, "virtual-dma", NULL);
|
||||
if (!vdma)
|
||||
vdma = vdma_default;
|
||||
|
||||
|
@ -881,7 +881,7 @@ static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
|
|||
static int __devinit pci_sun4v_pbm_init(struct pci_pbm_info *pbm,
|
||||
struct of_device *op, u32 devhandle)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
int err;
|
||||
|
||||
pbm->numa_node = of_node_to_nid(dp);
|
||||
|
@ -929,7 +929,7 @@ static int __devinit pci_sun4v_probe(struct of_device *op,
|
|||
u32 devhandle;
|
||||
int i, err;
|
||||
|
||||
dp = op->node;
|
||||
dp = op->dev.of_node;
|
||||
|
||||
if (!hvapi_negotiated++) {
|
||||
err = sun4v_hvapi_register(HV_GRP_PCI,
|
||||
|
|
|
@ -41,9 +41,9 @@ static int __devinit power_probe(struct of_device *op, const struct of_device_id
|
|||
power_reg = of_ioremap(res, 0, 0x4, "power");
|
||||
|
||||
printk(KERN_INFO "%s: Control reg at %llx\n",
|
||||
op->node->name, res->start);
|
||||
op->dev.of_node->name, res->start);
|
||||
|
||||
if (has_button_interrupt(irq, op->node)) {
|
||||
if (has_button_interrupt(irq, op->dev.of_node)) {
|
||||
if (request_irq(irq,
|
||||
power_handler, 0, "power", NULL) < 0)
|
||||
printk(KERN_ERR "power: Cannot setup IRQ handler.\n");
|
||||
|
|
|
@ -450,7 +450,7 @@ int psycho_iommu_init(struct pci_pbm_info *pbm, int tsbsize,
|
|||
void psycho_pbm_init_common(struct pci_pbm_info *pbm, struct of_device *op,
|
||||
const char *chip_name, int chip_type)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
|
||||
pbm->name = dp->full_name;
|
||||
pbm->numa_node = -1;
|
||||
|
|
|
@ -63,10 +63,10 @@ void sbus_set_sbus64(struct device *dev, int bursts)
|
|||
int slot;
|
||||
u64 val;
|
||||
|
||||
regs = of_get_property(op->node, "reg", NULL);
|
||||
regs = of_get_property(op->dev.of_node, "reg", NULL);
|
||||
if (!regs) {
|
||||
printk(KERN_ERR "sbus_set_sbus64: Cannot find regs for %s\n",
|
||||
op->node->full_name);
|
||||
op->dev.of_node->full_name);
|
||||
return;
|
||||
}
|
||||
slot = regs->which_io;
|
||||
|
@ -287,7 +287,7 @@ static irqreturn_t sysio_ue_handler(int irq, void *dev_id)
|
|||
SYSIO_UEAFSR_SPIO | SYSIO_UEAFSR_SDRD | SYSIO_UEAFSR_SDWR);
|
||||
upa_writeq(error_bits, afsr_reg);
|
||||
|
||||
portid = of_getintprop_default(op->node, "portid", -1);
|
||||
portid = of_getintprop_default(op->dev.of_node, "portid", -1);
|
||||
|
||||
/* Log the error. */
|
||||
printk("SYSIO[%x]: Uncorrectable ECC Error, primary error type[%s]\n",
|
||||
|
@ -361,7 +361,7 @@ static irqreturn_t sysio_ce_handler(int irq, void *dev_id)
|
|||
SYSIO_CEAFSR_SPIO | SYSIO_CEAFSR_SDRD | SYSIO_CEAFSR_SDWR);
|
||||
upa_writeq(error_bits, afsr_reg);
|
||||
|
||||
portid = of_getintprop_default(op->node, "portid", -1);
|
||||
portid = of_getintprop_default(op->dev.of_node, "portid", -1);
|
||||
|
||||
printk("SYSIO[%x]: Correctable ECC Error, primary error type[%s]\n",
|
||||
portid,
|
||||
|
@ -439,7 +439,7 @@ static irqreturn_t sysio_sbus_error_handler(int irq, void *dev_id)
|
|||
SYSIO_SBAFSR_SLE | SYSIO_SBAFSR_STO | SYSIO_SBAFSR_SBERR);
|
||||
upa_writeq(error_bits, afsr_reg);
|
||||
|
||||
portid = of_getintprop_default(op->node, "portid", -1);
|
||||
portid = of_getintprop_default(op->dev.of_node, "portid", -1);
|
||||
|
||||
/* Log the error. */
|
||||
printk("SYSIO[%x]: SBUS Error, primary error type[%s] read(%d)\n",
|
||||
|
@ -496,7 +496,7 @@ static void __init sysio_register_error_handlers(struct of_device *op)
|
|||
u64 control;
|
||||
int portid;
|
||||
|
||||
portid = of_getintprop_default(op->node, "portid", -1);
|
||||
portid = of_getintprop_default(op->dev.of_node, "portid", -1);
|
||||
|
||||
irq = sbus_build_irq(op, SYSIO_UE_INO);
|
||||
if (request_irq(irq, sysio_ue_handler, 0,
|
||||
|
@ -537,7 +537,7 @@ static void __init sysio_register_error_handlers(struct of_device *op)
|
|||
static void __init sbus_iommu_init(struct of_device *op)
|
||||
{
|
||||
const struct linux_prom64_registers *pr;
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
struct iommu *iommu;
|
||||
struct strbuf *strbuf;
|
||||
unsigned long regs, reg_base;
|
||||
|
@ -589,7 +589,7 @@ static void __init sbus_iommu_init(struct of_device *op)
|
|||
*/
|
||||
iommu->write_complete_reg = regs + 0x2000UL;
|
||||
|
||||
portid = of_getintprop_default(op->node, "portid", -1);
|
||||
portid = of_getintprop_default(op->dev.of_node, "portid", -1);
|
||||
printk(KERN_INFO "SYSIO: UPA portID %x, at %016lx\n",
|
||||
portid, regs);
|
||||
|
||||
|
|
|
@ -152,7 +152,7 @@ static struct platform_device m48t59_rtc = {
|
|||
|
||||
static int __devinit clock_probe(struct of_device *op, const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
const char *model = of_get_property(dp, "model", NULL);
|
||||
|
||||
if (!model)
|
||||
|
|
|
@ -424,7 +424,7 @@ static int __devinit rtc_probe(struct of_device *op, const struct of_device_id *
|
|||
struct resource *r;
|
||||
|
||||
printk(KERN_INFO "%s: RTC regs at 0x%llx\n",
|
||||
op->node->full_name, op->resource[0].start);
|
||||
op->dev.of_node->full_name, op->resource[0].start);
|
||||
|
||||
/* The CMOS RTC driver only accepts IORESOURCE_IO, so cons
|
||||
* up a fake resource so that the probe works for all cases.
|
||||
|
@ -480,7 +480,7 @@ static int __devinit bq4802_probe(struct of_device *op, const struct of_device_i
|
|||
{
|
||||
|
||||
printk(KERN_INFO "%s: BQ4802 regs at 0x%llx\n",
|
||||
op->node->full_name, op->resource[0].start);
|
||||
op->dev.of_node->full_name, op->resource[0].start);
|
||||
|
||||
rtc_bq4802_device.resource = &op->resource[0];
|
||||
return platform_device_register(&rtc_bq4802_device);
|
||||
|
@ -534,7 +534,7 @@ static struct platform_device m48t59_rtc = {
|
|||
|
||||
static int __devinit mostek_probe(struct of_device *op, const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
|
||||
/* On an Enterprise system there can be multiple mostek clocks.
|
||||
* We should only match the one that is on the central FHC bus.
|
||||
|
|
|
@ -1139,7 +1139,7 @@ static int __devinit pata_macio_attach(struct macio_dev *mdev,
|
|||
"Failed to allocate private memory\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
priv->node = of_node_get(mdev->ofdev.node);
|
||||
priv->node = of_node_get(mdev->ofdev.dev.of_node);
|
||||
priv->mdev = mdev;
|
||||
priv->dev = &mdev->ofdev.dev;
|
||||
|
||||
|
|
|
@ -694,7 +694,7 @@ mpc52xx_ata_probe(struct of_device *op, const struct of_device_id *match)
|
|||
struct bcom_task *dmatsk = NULL;
|
||||
|
||||
/* Get ipb frequency */
|
||||
ipb_freq = mpc5xxx_get_bus_frequency(op->node);
|
||||
ipb_freq = mpc5xxx_get_bus_frequency(op->dev.of_node);
|
||||
if (!ipb_freq) {
|
||||
dev_err(&op->dev, "could not determine IPB bus frequency\n");
|
||||
return -ENODEV;
|
||||
|
@ -702,7 +702,7 @@ mpc52xx_ata_probe(struct of_device *op, const struct of_device_id *match)
|
|||
|
||||
/* Get device base address from device tree, request the region
|
||||
* and ioremap it. */
|
||||
rv = of_address_to_resource(op->node, 0, &res_mem);
|
||||
rv = of_address_to_resource(op->dev.of_node, 0, &res_mem);
|
||||
if (rv) {
|
||||
dev_err(&op->dev, "could not determine device base address\n");
|
||||
return rv;
|
||||
|
@ -735,14 +735,14 @@ mpc52xx_ata_probe(struct of_device *op, const struct of_device_id *match)
|
|||
* The MPC5200 ATA controller supports MWDMA modes 0, 1 and 2 and
|
||||
* UDMA modes 0, 1 and 2.
|
||||
*/
|
||||
prop = of_get_property(op->node, "mwdma-mode", &proplen);
|
||||
prop = of_get_property(op->dev.of_node, "mwdma-mode", &proplen);
|
||||
if ((prop) && (proplen >= 4))
|
||||
mwdma_mask = ATA_MWDMA2 & ((1 << (*prop + 1)) - 1);
|
||||
prop = of_get_property(op->node, "udma-mode", &proplen);
|
||||
prop = of_get_property(op->dev.of_node, "udma-mode", &proplen);
|
||||
if ((prop) && (proplen >= 4))
|
||||
udma_mask = ATA_UDMA2 & ((1 << (*prop + 1)) - 1);
|
||||
|
||||
ata_irq = irq_of_parse_and_map(op->node, 0);
|
||||
ata_irq = irq_of_parse_and_map(op->dev.of_node, 0);
|
||||
if (ata_irq == NO_IRQ) {
|
||||
dev_err(&op->dev, "error mapping irq\n");
|
||||
return -EINVAL;
|
||||
|
|
|
@ -18,7 +18,7 @@ static int __devinit pata_of_platform_probe(struct of_device *ofdev,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
int ret;
|
||||
struct device_node *dn = ofdev->node;
|
||||
struct device_node *dn = ofdev->dev.of_node;
|
||||
struct resource io_res;
|
||||
struct resource ctl_res;
|
||||
struct resource irq_res;
|
||||
|
|
|
@ -1313,7 +1313,7 @@ static int sata_fsl_probe(struct of_device *ofdev,
|
|||
dev_printk(KERN_INFO, &ofdev->dev,
|
||||
"Sata FSL Platform/CSB Driver init\n");
|
||||
|
||||
hcr_base = of_iomap(ofdev->node, 0);
|
||||
hcr_base = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!hcr_base)
|
||||
goto error_exit_with_cleanup;
|
||||
|
||||
|
@ -1332,7 +1332,7 @@ static int sata_fsl_probe(struct of_device *ofdev,
|
|||
host_priv->ssr_base = ssr_base;
|
||||
host_priv->csr_base = csr_base;
|
||||
|
||||
irq = irq_of_parse_and_map(ofdev->node, 0);
|
||||
irq = irq_of_parse_and_map(ofdev->dev.of_node, 0);
|
||||
if (irq < 0) {
|
||||
dev_printk(KERN_ERR, &ofdev->dev, "invalid irq from platform\n");
|
||||
goto error_exit_with_cleanup;
|
||||
|
|
|
@ -789,7 +789,7 @@ static int __init fore200e_sba_map(struct fore200e *fore200e)
|
|||
fore200e->bus->write(0x02, fore200e->regs.sba.isr); /* XXX hardwired interrupt level */
|
||||
|
||||
/* get the supported DVMA burst sizes */
|
||||
bursts = of_getintprop_default(op->node->parent, "burst-sizes", 0x00);
|
||||
bursts = of_getintprop_default(op->dev.of_node->parent, "burst-sizes", 0x00);
|
||||
|
||||
if (sbus_can_dma_64bit())
|
||||
sbus_set_sbus64(&op->dev, bursts);
|
||||
|
@ -820,18 +820,20 @@ static int __init fore200e_sba_prom_read(struct fore200e *fore200e, struct prom_
|
|||
const u8 *prop;
|
||||
int len;
|
||||
|
||||
prop = of_get_property(op->node, "madaddrlo2", &len);
|
||||
prop = of_get_property(op->dev.of_node, "madaddrlo2", &len);
|
||||
if (!prop)
|
||||
return -ENODEV;
|
||||
memcpy(&prom->mac_addr[4], prop, 4);
|
||||
|
||||
prop = of_get_property(op->node, "madaddrhi4", &len);
|
||||
prop = of_get_property(op->dev.of_node, "madaddrhi4", &len);
|
||||
if (!prop)
|
||||
return -ENODEV;
|
||||
memcpy(&prom->mac_addr[2], prop, 4);
|
||||
|
||||
prom->serial_number = of_getintprop_default(op->node, "serialnumber", 0);
|
||||
prom->hw_revision = of_getintprop_default(op->node, "promversion", 0);
|
||||
prom->serial_number = of_getintprop_default(op->dev.of_node,
|
||||
"serialnumber", 0);
|
||||
prom->hw_revision = of_getintprop_default(op->dev.of_node,
|
||||
"promversion", 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -841,10 +843,10 @@ static int fore200e_sba_proc_read(struct fore200e *fore200e, char *page)
|
|||
struct of_device *op = fore200e->bus_dev;
|
||||
const struct linux_prom_registers *regs;
|
||||
|
||||
regs = of_get_property(op->node, "reg", NULL);
|
||||
regs = of_get_property(op->dev.of_node, "reg", NULL);
|
||||
|
||||
return sprintf(page, " SBUS slot/device:\t\t%d/'%s'\n",
|
||||
(regs ? regs->which_io : 0), op->node->name);
|
||||
(regs ? regs->which_io : 0), op->dev.of_node->name);
|
||||
}
|
||||
#endif /* CONFIG_SBUS */
|
||||
|
||||
|
|
|
@ -1004,7 +1004,7 @@ static const struct block_device_operations floppy_fops = {
|
|||
|
||||
static int swim3_add_device(struct macio_dev *mdev, int index)
|
||||
{
|
||||
struct device_node *swim = mdev->ofdev.node;
|
||||
struct device_node *swim = mdev->ofdev.dev.of_node;
|
||||
struct floppy_state *fs = &floppy_states[index];
|
||||
int rc = -EBUSY;
|
||||
|
||||
|
|
|
@ -1198,10 +1198,10 @@ ace_of_probe(struct of_device *op, const struct of_device_id *match)
|
|||
dev_dbg(&op->dev, "ace_of_probe(%p, %p)\n", op, match);
|
||||
|
||||
/* device id */
|
||||
id = of_get_property(op->node, "port-number", NULL);
|
||||
id = of_get_property(op->dev.of_node, "port-number", NULL);
|
||||
|
||||
/* physaddr */
|
||||
rc = of_address_to_resource(op->node, 0, &res);
|
||||
rc = of_address_to_resource(op->dev.of_node, 0, &res);
|
||||
if (rc) {
|
||||
dev_err(&op->dev, "invalid address\n");
|
||||
return rc;
|
||||
|
@ -1209,11 +1209,11 @@ ace_of_probe(struct of_device *op, const struct of_device_id *match)
|
|||
physaddr = res.start;
|
||||
|
||||
/* irq */
|
||||
irq = irq_of_parse_and_map(op->node, 0);
|
||||
irq = irq_of_parse_and_map(op->dev.of_node, 0);
|
||||
|
||||
/* bus width */
|
||||
bus_width = ACE_BUS_WIDTH_16;
|
||||
if (of_find_property(op->node, "8-bit", NULL))
|
||||
if (of_find_property(op->dev.of_node, "8-bit", NULL))
|
||||
bus_width = ACE_BUS_WIDTH_8;
|
||||
|
||||
/* Call the bus-independant setup code */
|
||||
|
|
|
@ -567,7 +567,7 @@ static int viocd_probe(struct vio_dev *vdev, const struct vio_device_id *id)
|
|||
struct disk_info *d;
|
||||
struct cdrom_device_info *c;
|
||||
struct request_queue *q;
|
||||
struct device_node *node = vdev->dev.archdata.of_node;
|
||||
struct device_node *node = vdev->dev.of_node;
|
||||
|
||||
deviceno = vdev->unit_address;
|
||||
if (deviceno >= VIOCD_MAX_CD)
|
||||
|
|
|
@ -660,7 +660,7 @@ static int __devinit n2rng_probe(struct of_device *op,
|
|||
np->hvapi_major);
|
||||
goto out_hvapi_unregister;
|
||||
}
|
||||
np->num_units = of_getintprop_default(op->node,
|
||||
np->num_units = of_getintprop_default(op->dev.of_node,
|
||||
"rng-#units", 0);
|
||||
if (!np->num_units) {
|
||||
dev_err(&op->dev, "VF RNG lacks rng-#units property\n");
|
||||
|
|
|
@ -98,7 +98,7 @@ static int __devinit rng_probe(struct of_device *ofdev,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
void __iomem *rng_regs;
|
||||
struct device_node *rng_np = ofdev->node;
|
||||
struct device_node *rng_np = ofdev->dev.of_node;
|
||||
struct resource res;
|
||||
int err = 0;
|
||||
|
||||
|
|
|
@ -2469,7 +2469,7 @@ static int __devinit ipmi_of_probe(struct of_device *dev,
|
|||
struct smi_info *info;
|
||||
struct resource resource;
|
||||
const int *regsize, *regspacing, *regshift;
|
||||
struct device_node *np = dev->node;
|
||||
struct device_node *np = dev->dev.of_node;
|
||||
int ret;
|
||||
int proplen;
|
||||
|
||||
|
@ -2525,7 +2525,7 @@ static int __devinit ipmi_of_probe(struct of_device *dev,
|
|||
info->io.regspacing = regspacing ? *regspacing : DEFAULT_REGSPACING;
|
||||
info->io.regshift = regshift ? *regshift : 0;
|
||||
|
||||
info->irq = irq_of_parse_and_map(dev->node, 0);
|
||||
info->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
|
||||
info->dev = &dev->dev;
|
||||
|
||||
dev_dbg(&dev->dev, "addr 0x%lx regsize %d spacing %d irq %x\n",
|
||||
|
|
|
@ -866,7 +866,7 @@ static int viotape_probe(struct vio_dev *vdev, const struct vio_device_id *id)
|
|||
{
|
||||
int i = vdev->unit_address;
|
||||
int j;
|
||||
struct device_node *node = vdev->dev.archdata.of_node;
|
||||
struct device_node *node = vdev->dev.of_node;
|
||||
|
||||
if (i >= VIOTAPE_MAX_TAPE)
|
||||
return -ENODEV;
|
||||
|
|
|
@ -772,18 +772,18 @@ hwicap_of_probe(struct of_device *op, const struct of_device_id *match)
|
|||
|
||||
dev_dbg(&op->dev, "hwicap_of_probe(%p, %p)\n", op, match);
|
||||
|
||||
rc = of_address_to_resource(op->node, 0, &res);
|
||||
rc = of_address_to_resource(op->dev.of_node, 0, &res);
|
||||
if (rc) {
|
||||
dev_err(&op->dev, "invalid address\n");
|
||||
return rc;
|
||||
}
|
||||
|
||||
id = of_get_property(op->node, "port-number", NULL);
|
||||
id = of_get_property(op->dev.of_node, "port-number", NULL);
|
||||
|
||||
/* It's most likely that we're using V4, if the family is not
|
||||
specified */
|
||||
regs = &v4_config_registers;
|
||||
family = of_get_property(op->node, "xlnx,family", NULL);
|
||||
family = of_get_property(op->dev.of_node, "xlnx,family", NULL);
|
||||
|
||||
if (family) {
|
||||
if (!strcmp(family, "virtex2p")) {
|
||||
|
|
|
@ -1807,7 +1807,7 @@ static int talitos_probe(struct of_device *ofdev,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
struct device *dev = &ofdev->dev;
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct talitos_private *priv;
|
||||
const unsigned int *prop;
|
||||
int i, err;
|
||||
|
|
|
@ -1313,7 +1313,7 @@ static int __devinit fsldma_of_probe(struct of_device *op,
|
|||
INIT_LIST_HEAD(&fdev->common.channels);
|
||||
|
||||
/* ioremap the registers for use */
|
||||
fdev->regs = of_iomap(op->node, 0);
|
||||
fdev->regs = of_iomap(op->dev.of_node, 0);
|
||||
if (!fdev->regs) {
|
||||
dev_err(&op->dev, "unable to ioremap registers\n");
|
||||
err = -ENOMEM;
|
||||
|
@ -1321,7 +1321,7 @@ static int __devinit fsldma_of_probe(struct of_device *op,
|
|||
}
|
||||
|
||||
/* map the channel IRQ if it exists, but don't hookup the handler yet */
|
||||
fdev->irq = irq_of_parse_and_map(op->node, 0);
|
||||
fdev->irq = irq_of_parse_and_map(op->dev.of_node, 0);
|
||||
|
||||
dma_cap_set(DMA_MEMCPY, fdev->common.cap_mask);
|
||||
dma_cap_set(DMA_INTERRUPT, fdev->common.cap_mask);
|
||||
|
@ -1343,7 +1343,7 @@ static int __devinit fsldma_of_probe(struct of_device *op,
|
|||
* of_platform_bus_remove(). Instead, we manually instantiate every DMA
|
||||
* channel object.
|
||||
*/
|
||||
for_each_child_of_node(op->node, child) {
|
||||
for_each_child_of_node(op->dev.of_node, child) {
|
||||
if (of_device_is_compatible(child, "fsl,eloplus-dma-channel")) {
|
||||
fsl_dma_chan_probe(fdev, child,
|
||||
FSL_DMA_IP_85XX | FSL_DMA_BIG_ENDIAN,
|
||||
|
|
|
@ -437,7 +437,7 @@ pca953x_get_alt_pdata(struct i2c_client *client)
|
|||
struct device_node *node;
|
||||
const uint16_t *val;
|
||||
|
||||
node = dev_archdata_get_node(&client->dev.archdata);
|
||||
node = client->dev.of_node;
|
||||
if (node == NULL)
|
||||
return NULL;
|
||||
|
||||
|
|
|
@ -440,7 +440,7 @@ static int __devinit cpm_i2c_setup(struct cpm_i2c *cpm)
|
|||
|
||||
init_waitqueue_head(&cpm->i2c_wait);
|
||||
|
||||
cpm->irq = of_irq_to_resource(ofdev->node, 0, NULL);
|
||||
cpm->irq = of_irq_to_resource(ofdev->dev.of_node, 0, NULL);
|
||||
if (cpm->irq == NO_IRQ)
|
||||
return -EINVAL;
|
||||
|
||||
|
@ -451,13 +451,13 @@ static int __devinit cpm_i2c_setup(struct cpm_i2c *cpm)
|
|||
return ret;
|
||||
|
||||
/* I2C parameter RAM */
|
||||
i2c_base = of_iomap(ofdev->node, 1);
|
||||
i2c_base = of_iomap(ofdev->dev.of_node, 1);
|
||||
if (i2c_base == NULL) {
|
||||
ret = -EINVAL;
|
||||
goto out_irq;
|
||||
}
|
||||
|
||||
if (of_device_is_compatible(ofdev->node, "fsl,cpm1-i2c")) {
|
||||
if (of_device_is_compatible(ofdev->dev.of_node, "fsl,cpm1-i2c")) {
|
||||
|
||||
/* Check for and use a microcode relocation patch. */
|
||||
cpm->i2c_ram = i2c_base;
|
||||
|
@ -474,7 +474,7 @@ static int __devinit cpm_i2c_setup(struct cpm_i2c *cpm)
|
|||
|
||||
cpm->version = 1;
|
||||
|
||||
} else if (of_device_is_compatible(ofdev->node, "fsl,cpm2-i2c")) {
|
||||
} else if (of_device_is_compatible(ofdev->dev.of_node, "fsl,cpm2-i2c")) {
|
||||
cpm->i2c_addr = cpm_muram_alloc(sizeof(struct i2c_ram), 64);
|
||||
cpm->i2c_ram = cpm_muram_addr(cpm->i2c_addr);
|
||||
out_be16(i2c_base, cpm->i2c_addr);
|
||||
|
@ -489,24 +489,24 @@ static int __devinit cpm_i2c_setup(struct cpm_i2c *cpm)
|
|||
}
|
||||
|
||||
/* I2C control/status registers */
|
||||
cpm->i2c_reg = of_iomap(ofdev->node, 0);
|
||||
cpm->i2c_reg = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (cpm->i2c_reg == NULL) {
|
||||
ret = -EINVAL;
|
||||
goto out_ram;
|
||||
}
|
||||
|
||||
data = of_get_property(ofdev->node, "fsl,cpm-command", &len);
|
||||
data = of_get_property(ofdev->dev.of_node, "fsl,cpm-command", &len);
|
||||
if (!data || len != 4) {
|
||||
ret = -EINVAL;
|
||||
goto out_reg;
|
||||
}
|
||||
cpm->cp_command = *data;
|
||||
|
||||
data = of_get_property(ofdev->node, "linux,i2c-class", &len);
|
||||
data = of_get_property(ofdev->dev.of_node, "linux,i2c-class", &len);
|
||||
if (data && len == 4)
|
||||
cpm->adap.class = *data;
|
||||
|
||||
data = of_get_property(ofdev->node, "clock-frequency", &len);
|
||||
data = of_get_property(ofdev->dev.of_node, "clock-frequency", &len);
|
||||
if (data && len == 4)
|
||||
cpm->freq = *data;
|
||||
else
|
||||
|
@ -661,7 +661,7 @@ static int __devinit cpm_i2c_probe(struct of_device *ofdev,
|
|||
|
||||
/* register new adapter to i2c module... */
|
||||
|
||||
data = of_get_property(ofdev->node, "linux,i2c-index", &len);
|
||||
data = of_get_property(ofdev->dev.of_node, "linux,i2c-index", &len);
|
||||
if (data && len == 4) {
|
||||
cpm->adap.nr = *data;
|
||||
result = i2c_add_numbered_adapter(&cpm->adap);
|
||||
|
@ -679,7 +679,7 @@ static int __devinit cpm_i2c_probe(struct of_device *ofdev,
|
|||
/*
|
||||
* register OF I2C devices
|
||||
*/
|
||||
of_register_i2c_devices(&cpm->adap, ofdev->node);
|
||||
of_register_i2c_devices(&cpm->adap, ofdev->dev.of_node);
|
||||
|
||||
return 0;
|
||||
out_shut:
|
||||
|
|
|
@ -664,7 +664,7 @@ static inline u8 iic_clckdiv(unsigned int opb)
|
|||
static int __devinit iic_request_irq(struct of_device *ofdev,
|
||||
struct ibm_iic_private *dev)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
int irq;
|
||||
|
||||
if (iic_force_poll)
|
||||
|
@ -695,7 +695,7 @@ static int __devinit iic_request_irq(struct of_device *ofdev,
|
|||
static int __devinit iic_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct ibm_iic_private *dev;
|
||||
struct i2c_adapter *adap;
|
||||
const u32 *freq;
|
||||
|
|
|
@ -560,14 +560,14 @@ static int __devinit fsl_i2c_probe(struct of_device *op,
|
|||
|
||||
init_waitqueue_head(&i2c->queue);
|
||||
|
||||
i2c->base = of_iomap(op->node, 0);
|
||||
i2c->base = of_iomap(op->dev.of_node, 0);
|
||||
if (!i2c->base) {
|
||||
dev_err(i2c->dev, "failed to map controller\n");
|
||||
result = -ENOMEM;
|
||||
goto fail_map;
|
||||
}
|
||||
|
||||
i2c->irq = irq_of_parse_and_map(op->node, 0);
|
||||
i2c->irq = irq_of_parse_and_map(op->dev.of_node, 0);
|
||||
if (i2c->irq != NO_IRQ) { /* i2c->irq = NO_IRQ implies polling */
|
||||
result = request_irq(i2c->irq, mpc_i2c_isr,
|
||||
IRQF_SHARED, "i2c-mpc", i2c);
|
||||
|
@ -577,21 +577,22 @@ static int __devinit fsl_i2c_probe(struct of_device *op,
|
|||
}
|
||||
}
|
||||
|
||||
if (of_get_property(op->node, "fsl,preserve-clocking", NULL)) {
|
||||
if (of_get_property(op->dev.of_node, "fsl,preserve-clocking", NULL)) {
|
||||
clock = MPC_I2C_CLOCK_PRESERVE;
|
||||
} else {
|
||||
prop = of_get_property(op->node, "clock-frequency", &plen);
|
||||
prop = of_get_property(op->dev.of_node, "clock-frequency",
|
||||
&plen);
|
||||
if (prop && plen == sizeof(u32))
|
||||
clock = *prop;
|
||||
}
|
||||
|
||||
if (match->data) {
|
||||
struct mpc_i2c_data *data = match->data;
|
||||
data->setup(op->node, i2c, clock, data->prescaler);
|
||||
data->setup(op->dev.of_node, i2c, clock, data->prescaler);
|
||||
} else {
|
||||
/* Backwards compatibility */
|
||||
if (of_get_property(op->node, "dfsrr", NULL))
|
||||
mpc_i2c_setup_8xxx(op->node, i2c, clock, 0);
|
||||
if (of_get_property(op->dev.of_node, "dfsrr", NULL))
|
||||
mpc_i2c_setup_8xxx(op->dev.of_node, i2c, clock, 0);
|
||||
}
|
||||
|
||||
dev_set_drvdata(&op->dev, i2c);
|
||||
|
@ -605,7 +606,7 @@ static int __devinit fsl_i2c_probe(struct of_device *op,
|
|||
dev_err(i2c->dev, "failed to add adapter\n");
|
||||
goto fail_add;
|
||||
}
|
||||
of_register_i2c_devices(&i2c->adap, op->node);
|
||||
of_register_i2c_devices(&i2c->adap, op->dev.of_node);
|
||||
|
||||
return result;
|
||||
|
||||
|
|
|
@ -1153,7 +1153,7 @@ pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
|
|||
|
||||
if (macio_resource_count(mdev) == 0) {
|
||||
printk(KERN_WARNING "ide-pmac: no address for %s\n",
|
||||
mdev->ofdev.node->full_name);
|
||||
mdev->ofdev.dev.of_node->full_name);
|
||||
rc = -ENXIO;
|
||||
goto out_free_pmif;
|
||||
}
|
||||
|
@ -1161,7 +1161,7 @@ pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
|
|||
/* Request memory resource for IO ports */
|
||||
if (macio_request_resource(mdev, 0, "ide-pmac (ports)")) {
|
||||
printk(KERN_ERR "ide-pmac: can't request MMIO resource for "
|
||||
"%s!\n", mdev->ofdev.node->full_name);
|
||||
"%s!\n", mdev->ofdev.dev.of_node->full_name);
|
||||
rc = -EBUSY;
|
||||
goto out_free_pmif;
|
||||
}
|
||||
|
@ -1173,7 +1173,7 @@ pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
|
|||
*/
|
||||
if (macio_irq_count(mdev) == 0) {
|
||||
printk(KERN_WARNING "ide-pmac: no intrs for device %s, using "
|
||||
"13\n", mdev->ofdev.node->full_name);
|
||||
"13\n", mdev->ofdev.dev.of_node->full_name);
|
||||
irq = irq_create_mapping(NULL, 13);
|
||||
} else
|
||||
irq = macio_irq(mdev, 0);
|
||||
|
@ -1182,7 +1182,7 @@ pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
|
|||
regbase = (unsigned long) base;
|
||||
|
||||
pmif->mdev = mdev;
|
||||
pmif->node = mdev->ofdev.node;
|
||||
pmif->node = mdev->ofdev.dev.of_node;
|
||||
pmif->regbase = regbase;
|
||||
pmif->irq = irq;
|
||||
pmif->kauai_fcr = NULL;
|
||||
|
@ -1191,7 +1191,7 @@ pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
|
|||
if (macio_request_resource(mdev, 1, "ide-pmac (dma)"))
|
||||
printk(KERN_WARNING "ide-pmac: can't request DMA "
|
||||
"resource for %s!\n",
|
||||
mdev->ofdev.node->full_name);
|
||||
mdev->ofdev.dev.of_node->full_name);
|
||||
else
|
||||
pmif->dma_regs = ioremap(macio_resource_start(mdev, 1), 0x1000);
|
||||
} else
|
||||
|
|
|
@ -291,8 +291,9 @@ static int ehca_sense_attributes(struct ehca_shca *shca)
|
|||
};
|
||||
|
||||
ehca_gen_dbg("Probing adapter %s...",
|
||||
shca->ofdev->node->full_name);
|
||||
loc_code = of_get_property(shca->ofdev->node, "ibm,loc-code", NULL);
|
||||
shca->ofdev->dev.of_node->full_name);
|
||||
loc_code = of_get_property(shca->ofdev->dev.of_node, "ibm,loc-code",
|
||||
NULL);
|
||||
if (loc_code)
|
||||
ehca_gen_dbg(" ... location lode=%s", loc_code);
|
||||
|
||||
|
@ -720,16 +721,16 @@ static int __devinit ehca_probe(struct of_device *dev,
|
|||
int ret, i, eq_size;
|
||||
unsigned long flags;
|
||||
|
||||
handle = of_get_property(dev->node, "ibm,hca-handle", NULL);
|
||||
handle = of_get_property(dev->dev.of_node, "ibm,hca-handle", NULL);
|
||||
if (!handle) {
|
||||
ehca_gen_err("Cannot get eHCA handle for adapter: %s.",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (!(*handle)) {
|
||||
ehca_gen_err("Wrong eHCA handle for adapter: %s.",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ static inline void i8042_write_command(int val)
|
|||
|
||||
static int __devinit sparc_i8042_probe(struct of_device *op, const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
|
||||
dp = dp->child;
|
||||
while (dp) {
|
||||
|
|
|
@ -244,17 +244,17 @@ static int __devinit xps2_of_probe(struct of_device *ofdev,
|
|||
int error;
|
||||
|
||||
dev_info(dev, "Device Tree Probing \'%s\'\n",
|
||||
ofdev->node->name);
|
||||
ofdev->dev.of_node->name);
|
||||
|
||||
/* Get iospace for the device */
|
||||
error = of_address_to_resource(ofdev->node, 0, &r_mem);
|
||||
error = of_address_to_resource(ofdev->dev.of_node, 0, &r_mem);
|
||||
if (error) {
|
||||
dev_err(dev, "invalid address\n");
|
||||
return error;
|
||||
}
|
||||
|
||||
/* Get IRQ for the device */
|
||||
if (of_irq_to_resource(ofdev->node, 0, &r_irq) == NO_IRQ) {
|
||||
if (of_irq_to_resource(ofdev->dev.of_node, 0, &r_irq) == NO_IRQ) {
|
||||
dev_err(dev, "no IRQ found\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
@ -342,7 +342,7 @@ static int __devexit xps2_of_remove(struct of_device *of_dev)
|
|||
iounmap(drvdata->base_address);
|
||||
|
||||
/* Get iospace of the device */
|
||||
if (of_address_to_resource(of_dev->node, 0, &r_mem))
|
||||
if (of_address_to_resource(of_dev->dev.of_node, 0, &r_mem))
|
||||
dev_err(dev, "invalid address\n");
|
||||
else
|
||||
release_mem_region(r_mem.start, resource_size(&r_mem));
|
||||
|
|
|
@ -211,7 +211,7 @@ struct gpio_led_of_platform_data {
|
|||
static int __devinit of_gpio_leds_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node, *child;
|
||||
struct device_node *np = ofdev->dev.of_node, *child;
|
||||
struct gpio_led_of_platform_data *pdata;
|
||||
int count = 0, ret;
|
||||
|
||||
|
|
|
@ -248,7 +248,7 @@ static void macio_create_fixup_irq(struct macio_dev *dev, int index,
|
|||
|
||||
static void macio_add_missing_resources(struct macio_dev *dev)
|
||||
{
|
||||
struct device_node *np = dev->ofdev.node;
|
||||
struct device_node *np = dev->ofdev.dev.of_node;
|
||||
unsigned int irq_base;
|
||||
|
||||
/* Gatwick has some missing interrupts on child nodes */
|
||||
|
@ -289,7 +289,7 @@ static void macio_add_missing_resources(struct macio_dev *dev)
|
|||
|
||||
static void macio_setup_interrupts(struct macio_dev *dev)
|
||||
{
|
||||
struct device_node *np = dev->ofdev.node;
|
||||
struct device_node *np = dev->ofdev.dev.of_node;
|
||||
unsigned int irq;
|
||||
int i = 0, j = 0;
|
||||
|
||||
|
@ -317,7 +317,7 @@ static void macio_setup_interrupts(struct macio_dev *dev)
|
|||
static void macio_setup_resources(struct macio_dev *dev,
|
||||
struct resource *parent_res)
|
||||
{
|
||||
struct device_node *np = dev->ofdev.node;
|
||||
struct device_node *np = dev->ofdev.dev.of_node;
|
||||
struct resource r;
|
||||
int index;
|
||||
|
||||
|
@ -373,7 +373,7 @@ static struct macio_dev * macio_add_one_device(struct macio_chip *chip,
|
|||
|
||||
dev->bus = &chip->lbus;
|
||||
dev->media_bay = in_bay;
|
||||
dev->ofdev.node = np;
|
||||
dev->ofdev.dev.of_node = np;
|
||||
dev->ofdev.dma_mask = 0xffffffffUL;
|
||||
dev->ofdev.dev.dma_mask = &dev->ofdev.dma_mask;
|
||||
dev->ofdev.dev.parent = parent;
|
||||
|
@ -494,9 +494,9 @@ static void macio_pci_add_devices(struct macio_chip *chip)
|
|||
}
|
||||
|
||||
/* Add media bay devices if any */
|
||||
pnode = mbdev->ofdev.dev.of_node;
|
||||
if (mbdev)
|
||||
for (np = NULL; (np = of_get_next_child(mbdev->ofdev.node, np))
|
||||
!= NULL;) {
|
||||
for (np = NULL; (np = of_get_next_child(pnode, np)) != NULL;) {
|
||||
if (macio_skip_device(np))
|
||||
continue;
|
||||
of_node_get(np);
|
||||
|
@ -506,9 +506,9 @@ static void macio_pci_add_devices(struct macio_chip *chip)
|
|||
}
|
||||
|
||||
/* Add serial ports if any */
|
||||
pnode = sdev->ofdev.dev.of_node;
|
||||
if (sdev) {
|
||||
for (np = NULL; (np = of_get_next_child(sdev->ofdev.node, np))
|
||||
!= NULL;) {
|
||||
for (np = NULL; (np = of_get_next_child(pnode, np)) != NULL;) {
|
||||
if (macio_skip_device(np))
|
||||
continue;
|
||||
of_node_get(np);
|
||||
|
|
|
@ -9,7 +9,7 @@ field##_show (struct device *dev, struct device_attribute *attr, \
|
|||
char *buf) \
|
||||
{ \
|
||||
struct macio_dev *mdev = to_macio_device (dev); \
|
||||
return sprintf (buf, format_string, mdev->ofdev.node->field); \
|
||||
return sprintf (buf, format_string, mdev->ofdev.dev.of_node->field); \
|
||||
}
|
||||
|
||||
static ssize_t
|
||||
|
@ -21,7 +21,7 @@ compatible_show (struct device *dev, struct device_attribute *attr, char *buf)
|
|||
int length = 0;
|
||||
|
||||
of = &to_macio_device (dev)->ofdev;
|
||||
compat = of_get_property(of->node, "compatible", &cplen);
|
||||
compat = of_get_property(of->dev.of_node, "compatible", &cplen);
|
||||
if (!compat) {
|
||||
*buf = '\0';
|
||||
return 0;
|
||||
|
@ -58,7 +58,7 @@ static ssize_t devspec_show(struct device *dev,
|
|||
struct of_device *ofdev;
|
||||
|
||||
ofdev = to_of_device(dev);
|
||||
return sprintf(buf, "%s\n", ofdev->node->full_name);
|
||||
return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name);
|
||||
}
|
||||
|
||||
macio_config_of_attr (name, "%s\n");
|
||||
|
|
|
@ -564,7 +564,7 @@ static int __devinit media_bay_attach(struct macio_dev *mdev, const struct of_de
|
|||
unsigned long base;
|
||||
int i;
|
||||
|
||||
ofnode = mdev->ofdev.node;
|
||||
ofnode = mdev->ofdev.dev.of_node;
|
||||
|
||||
if (macio_resource_count(mdev) < 1)
|
||||
return -ENODEV;
|
||||
|
|
|
@ -375,7 +375,7 @@ static int __devinit rackmeter_probe(struct macio_dev* mdev,
|
|||
pr_debug("rackmeter_probe()\n");
|
||||
|
||||
/* Get i2s-a node */
|
||||
while ((i2s = of_get_next_child(mdev->ofdev.node, i2s)) != NULL)
|
||||
while ((i2s = of_get_next_child(mdev->ofdev.dev.of_node, i2s)) != NULL)
|
||||
if (strcmp(i2s->name, "i2s-a") == 0)
|
||||
break;
|
||||
if (i2s == NULL) {
|
||||
|
@ -431,7 +431,7 @@ static int __devinit rackmeter_probe(struct macio_dev* mdev,
|
|||
of_address_to_resource(i2s, 1, &rdma)) {
|
||||
printk(KERN_ERR
|
||||
"rackmeter: found match but lacks resources: %s",
|
||||
mdev->ofdev.node->full_name);
|
||||
mdev->ofdev.dev.of_node->full_name);
|
||||
rc = -ENXIO;
|
||||
goto bail_free;
|
||||
}
|
||||
|
|
|
@ -2215,7 +2215,7 @@ static int fcu_of_probe(struct of_device* dev, const struct of_device_id *match)
|
|||
state = state_detached;
|
||||
|
||||
/* Lookup the fans in the device tree */
|
||||
fcu_lookup_fans(dev->node);
|
||||
fcu_lookup_fans(dev->dev.of_node);
|
||||
|
||||
/* Add the driver */
|
||||
return i2c_add_driver(&therm_pm72_driver);
|
||||
|
|
|
@ -64,7 +64,7 @@ static int of_mmc_spi_get_ro(struct device *dev)
|
|||
struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi)
|
||||
{
|
||||
struct device *dev = &spi->dev;
|
||||
struct device_node *np = dev_archdata_get_node(&dev->archdata);
|
||||
struct device_node *np = dev->of_node;
|
||||
struct of_mmc_spi *oms;
|
||||
const u32 *voltage_ranges;
|
||||
int num_ranges;
|
||||
|
@ -135,7 +135,7 @@ EXPORT_SYMBOL(mmc_spi_get_pdata);
|
|||
void mmc_spi_put_pdata(struct spi_device *spi)
|
||||
{
|
||||
struct device *dev = &spi->dev;
|
||||
struct device_node *np = dev_archdata_get_node(&dev->archdata);
|
||||
struct device_node *np = dev->of_node;
|
||||
struct of_mmc_spi *oms = to_of_mmc_spi(dev);
|
||||
int i;
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ static bool __devinit sdhci_of_wp_inverted(struct device_node *np)
|
|||
static int __devinit sdhci_of_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct sdhci_of_data *sdhci_of_data = match->data;
|
||||
struct sdhci_host *host;
|
||||
struct sdhci_of_host *of_host;
|
||||
|
|
|
@ -143,7 +143,7 @@ static int of_flash_remove(struct of_device *dev)
|
|||
static struct mtd_info * __devinit obsolete_probe(struct of_device *dev,
|
||||
struct map_info *map)
|
||||
{
|
||||
struct device_node *dp = dev->node;
|
||||
struct device_node *dp = dev->dev.of_node;
|
||||
const char *of_probe;
|
||||
struct mtd_info *mtd;
|
||||
static const char *rom_probe_types[]
|
||||
|
@ -180,7 +180,7 @@ static int __devinit of_flash_probe(struct of_device *dev,
|
|||
static const char *part_probe_types[]
|
||||
= { "cmdlinepart", "RedBoot", NULL };
|
||||
#endif
|
||||
struct device_node *dp = dev->node;
|
||||
struct device_node *dp = dev->dev.of_node;
|
||||
struct resource res;
|
||||
struct of_flash *info;
|
||||
const char *probe_type = match->data;
|
||||
|
@ -204,7 +204,7 @@ static int __devinit of_flash_probe(struct of_device *dev,
|
|||
p = of_get_property(dp, "reg", &count);
|
||||
if (count % reg_tuple_size != 0) {
|
||||
dev_err(&dev->dev, "Malformed reg property on %s\n",
|
||||
dev->node->full_name);
|
||||
dev->dev.of_node->full_name);
|
||||
err = -EINVAL;
|
||||
goto err_flash_remove;
|
||||
}
|
||||
|
|
|
@ -110,7 +110,7 @@ int uflash_devinit(struct of_device *op, struct device_node *dp)
|
|||
|
||||
static int __devinit uflash_probe(struct of_device *op, const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
|
||||
/* Flashprom must have the "user" property in order to
|
||||
* be used by this driver.
|
||||
|
|
|
@ -1030,14 +1030,14 @@ static int __devinit fsl_elbc_ctrl_probe(struct of_device *ofdev,
|
|||
init_waitqueue_head(&ctrl->controller.wq);
|
||||
init_waitqueue_head(&ctrl->irq_wait);
|
||||
|
||||
ctrl->regs = of_iomap(ofdev->node, 0);
|
||||
ctrl->regs = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!ctrl->regs) {
|
||||
dev_err(&ofdev->dev, "failed to get memory region\n");
|
||||
ret = -ENODEV;
|
||||
goto err;
|
||||
}
|
||||
|
||||
ctrl->irq = of_irq_to_resource(ofdev->node, 0, NULL);
|
||||
ctrl->irq = of_irq_to_resource(ofdev->dev.of_node, 0, NULL);
|
||||
if (ctrl->irq == NO_IRQ) {
|
||||
dev_err(&ofdev->dev, "failed to get irq resource\n");
|
||||
ret = -ENODEV;
|
||||
|
@ -1058,7 +1058,7 @@ static int __devinit fsl_elbc_ctrl_probe(struct of_device *ofdev,
|
|||
goto err;
|
||||
}
|
||||
|
||||
for_each_child_of_node(ofdev->node, child)
|
||||
for_each_child_of_node(ofdev->dev.of_node, child)
|
||||
if (of_device_is_compatible(child, "fsl,elbc-fcm-nand"))
|
||||
fsl_elbc_chip_probe(ctrl, child);
|
||||
|
||||
|
|
|
@ -239,14 +239,14 @@ static int __devinit ndfc_probe(struct of_device *ofdev,
|
|||
dev_set_drvdata(&ofdev->dev, ndfc);
|
||||
|
||||
/* Read the reg property to get the chip select */
|
||||
reg = of_get_property(ofdev->node, "reg", &len);
|
||||
reg = of_get_property(ofdev->dev.of_node, "reg", &len);
|
||||
if (reg == NULL || len != 12) {
|
||||
dev_err(&ofdev->dev, "unable read reg property (%d)\n", len);
|
||||
return -ENOENT;
|
||||
}
|
||||
ndfc->chip_select = reg[0];
|
||||
|
||||
ndfc->ndfcbase = of_iomap(ofdev->node, 0);
|
||||
ndfc->ndfcbase = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!ndfc->ndfcbase) {
|
||||
dev_err(&ofdev->dev, "failed to get memory\n");
|
||||
return -EIO;
|
||||
|
@ -255,20 +255,20 @@ static int __devinit ndfc_probe(struct of_device *ofdev,
|
|||
ccr = NDFC_CCR_BS(ndfc->chip_select);
|
||||
|
||||
/* It is ok if ccr does not exist - just default to 0 */
|
||||
reg = of_get_property(ofdev->node, "ccr", NULL);
|
||||
reg = of_get_property(ofdev->dev.of_node, "ccr", NULL);
|
||||
if (reg)
|
||||
ccr |= *reg;
|
||||
|
||||
out_be32(ndfc->ndfcbase + NDFC_CCR, ccr);
|
||||
|
||||
/* Set the bank settings if given */
|
||||
reg = of_get_property(ofdev->node, "bank-settings", NULL);
|
||||
reg = of_get_property(ofdev->dev.of_node, "bank-settings", NULL);
|
||||
if (reg) {
|
||||
int offset = NDFC_BCFG0 + (ndfc->chip_select << 2);
|
||||
out_be32(ndfc->ndfcbase + offset, *reg);
|
||||
}
|
||||
|
||||
err = ndfc_chip_init(ndfc, ofdev->node);
|
||||
err = ndfc_chip_init(ndfc, ofdev->dev.of_node);
|
||||
if (err) {
|
||||
iounmap(ndfc->ndfcbase);
|
||||
return err;
|
||||
|
|
|
@ -93,7 +93,7 @@ static int __devinit pasemi_nand_probe(struct of_device *ofdev,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
struct pci_dev *pdev;
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct resource res;
|
||||
struct nand_chip *chip;
|
||||
int err = 0;
|
||||
|
|
|
@ -72,7 +72,7 @@ static int __devexit sja1000_ofp_remove(struct of_device *ofdev)
|
|||
{
|
||||
struct net_device *dev = dev_get_drvdata(&ofdev->dev);
|
||||
struct sja1000_priv *priv = netdev_priv(dev);
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct resource res;
|
||||
|
||||
dev_set_drvdata(&ofdev->dev, NULL);
|
||||
|
@ -91,7 +91,7 @@ static int __devexit sja1000_ofp_remove(struct of_device *ofdev)
|
|||
static int __devinit sja1000_ofp_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *id)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct net_device *dev;
|
||||
struct sja1000_priv *priv;
|
||||
struct resource res;
|
||||
|
|
|
@ -3035,7 +3035,7 @@ static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id,
|
|||
static void __devinit logical_port_release(struct device *dev)
|
||||
{
|
||||
struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
|
||||
of_node_put(port->ofdev.node);
|
||||
of_node_put(port->ofdev.dev.of_node);
|
||||
}
|
||||
|
||||
static struct device *ehea_register_port(struct ehea_port *port,
|
||||
|
@ -3043,7 +3043,7 @@ static struct device *ehea_register_port(struct ehea_port *port,
|
|||
{
|
||||
int ret;
|
||||
|
||||
port->ofdev.node = of_node_get(dn);
|
||||
port->ofdev.dev.of_node = of_node_get(dn);
|
||||
port->ofdev.dev.parent = &port->adapter->ofdev->dev;
|
||||
port->ofdev.dev.bus = &ibmebus_bus_type;
|
||||
|
||||
|
@ -3210,7 +3210,7 @@ static int ehea_setup_ports(struct ehea_adapter *adapter)
|
|||
const u32 *dn_log_port_id;
|
||||
int i = 0;
|
||||
|
||||
lhea_dn = adapter->ofdev->node;
|
||||
lhea_dn = adapter->ofdev->dev.of_node;
|
||||
while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
|
||||
|
||||
dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
|
||||
|
@ -3249,7 +3249,7 @@ static struct device_node *ehea_get_eth_dn(struct ehea_adapter *adapter,
|
|||
struct device_node *eth_dn = NULL;
|
||||
const u32 *dn_log_port_id;
|
||||
|
||||
lhea_dn = adapter->ofdev->node;
|
||||
lhea_dn = adapter->ofdev->dev.of_node;
|
||||
while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
|
||||
|
||||
dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
|
||||
|
@ -3379,7 +3379,7 @@ static int __devinit ehea_probe_adapter(struct of_device *dev,
|
|||
const u64 *adapter_handle;
|
||||
int ret;
|
||||
|
||||
if (!dev || !dev->node) {
|
||||
if (!dev || !dev->dev.of_node) {
|
||||
ehea_error("Invalid ibmebus device probed");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
@ -3395,14 +3395,14 @@ static int __devinit ehea_probe_adapter(struct of_device *dev,
|
|||
|
||||
adapter->ofdev = dev;
|
||||
|
||||
adapter_handle = of_get_property(dev->node, "ibm,hea-handle",
|
||||
adapter_handle = of_get_property(dev->dev.of_node, "ibm,hea-handle",
|
||||
NULL);
|
||||
if (adapter_handle)
|
||||
adapter->handle = *adapter_handle;
|
||||
|
||||
if (!adapter->handle) {
|
||||
dev_err(&dev->dev, "failed getting handle for adapter"
|
||||
" '%s'\n", dev->node->full_name);
|
||||
" '%s'\n", dev->dev.of_node->full_name);
|
||||
ret = -ENODEV;
|
||||
goto out_free_ad;
|
||||
}
|
||||
|
|
|
@ -873,7 +873,7 @@ mpc52xx_fec_probe(struct of_device *op, const struct of_device_id *match)
|
|||
priv->ndev = ndev;
|
||||
|
||||
/* Reserve FEC control zone */
|
||||
rv = of_address_to_resource(op->node, 0, &mem);
|
||||
rv = of_address_to_resource(op->dev.of_node, 0, &mem);
|
||||
if (rv) {
|
||||
printk(KERN_ERR DRIVER_NAME ": "
|
||||
"Error while parsing device node resource\n" );
|
||||
|
@ -921,7 +921,7 @@ mpc52xx_fec_probe(struct of_device *op, const struct of_device_id *match)
|
|||
|
||||
/* Get the IRQ we need one by one */
|
||||
/* Control */
|
||||
ndev->irq = irq_of_parse_and_map(op->node, 0);
|
||||
ndev->irq = irq_of_parse_and_map(op->dev.of_node, 0);
|
||||
|
||||
/* RX */
|
||||
priv->r_irq = bcom_get_task_irq(priv->rx_dmatsk);
|
||||
|
@ -944,20 +944,20 @@ mpc52xx_fec_probe(struct of_device *op, const struct of_device_id *match)
|
|||
/* Start with safe defaults for link connection */
|
||||
priv->speed = 100;
|
||||
priv->duplex = DUPLEX_HALF;
|
||||
priv->mdio_speed = ((mpc5xxx_get_bus_frequency(op->node) >> 20) / 5) << 1;
|
||||
priv->mdio_speed = ((mpc5xxx_get_bus_frequency(op->dev.of_node) >> 20) / 5) << 1;
|
||||
|
||||
/* The current speed preconfigures the speed of the MII link */
|
||||
prop = of_get_property(op->node, "current-speed", &prop_size);
|
||||
prop = of_get_property(op->dev.of_node, "current-speed", &prop_size);
|
||||
if (prop && (prop_size >= sizeof(u32) * 2)) {
|
||||
priv->speed = prop[0];
|
||||
priv->duplex = prop[1] ? DUPLEX_FULL : DUPLEX_HALF;
|
||||
}
|
||||
|
||||
/* If there is a phy handle, then get the PHY node */
|
||||
priv->phy_node = of_parse_phandle(op->node, "phy-handle", 0);
|
||||
priv->phy_node = of_parse_phandle(op->dev.of_node, "phy-handle", 0);
|
||||
|
||||
/* the 7-wire property means don't use MII mode */
|
||||
if (of_find_property(op->node, "fsl,7-wire-mode", NULL)) {
|
||||
if (of_find_property(op->dev.of_node, "fsl,7-wire-mode", NULL)) {
|
||||
priv->seven_wire_mode = 1;
|
||||
dev_info(&ndev->dev, "using 7-wire PHY mode\n");
|
||||
}
|
||||
|
|
|
@ -66,7 +66,7 @@ static int mpc52xx_fec_mdio_probe(struct of_device *of,
|
|||
const struct of_device_id *match)
|
||||
{
|
||||
struct device *dev = &of->dev;
|
||||
struct device_node *np = of->node;
|
||||
struct device_node *np = of->dev.of_node;
|
||||
struct mii_bus *bus;
|
||||
struct mpc52xx_fec_mdio_priv *priv;
|
||||
struct resource res = {};
|
||||
|
@ -107,7 +107,7 @@ static int mpc52xx_fec_mdio_probe(struct of_device *of,
|
|||
|
||||
/* set MII speed */
|
||||
out_be32(&priv->regs->mii_speed,
|
||||
((mpc5xxx_get_bus_frequency(of->node) >> 20) / 5) << 1);
|
||||
((mpc5xxx_get_bus_frequency(of->dev.of_node) >> 20) / 5) << 1);
|
||||
|
||||
err = of_mdiobus_register(bus, np);
|
||||
if (err)
|
||||
|
|
|
@ -1015,7 +1015,7 @@ static int __devinit fs_enet_probe(struct of_device *ofdev,
|
|||
return -ENOMEM;
|
||||
|
||||
if (!IS_FEC(match)) {
|
||||
data = of_get_property(ofdev->node, "fsl,cpm-command", &len);
|
||||
data = of_get_property(ofdev->dev.of_node, "fsl,cpm-command", &len);
|
||||
if (!data || len != 4)
|
||||
goto out_free_fpi;
|
||||
|
||||
|
@ -1027,8 +1027,8 @@ static int __devinit fs_enet_probe(struct of_device *ofdev,
|
|||
fpi->rx_copybreak = 240;
|
||||
fpi->use_napi = 1;
|
||||
fpi->napi_weight = 17;
|
||||
fpi->phy_node = of_parse_phandle(ofdev->node, "phy-handle", 0);
|
||||
if ((!fpi->phy_node) && (!of_get_property(ofdev->node, "fixed-link",
|
||||
fpi->phy_node = of_parse_phandle(ofdev->dev.of_node, "phy-handle", 0);
|
||||
if ((!fpi->phy_node) && (!of_get_property(ofdev->dev.of_node, "fixed-link",
|
||||
NULL)))
|
||||
goto out_free_fpi;
|
||||
|
||||
|
@ -1061,7 +1061,7 @@ static int __devinit fs_enet_probe(struct of_device *ofdev,
|
|||
spin_lock_init(&fep->lock);
|
||||
spin_lock_init(&fep->tx_lock);
|
||||
|
||||
mac_addr = of_get_mac_address(ofdev->node);
|
||||
mac_addr = of_get_mac_address(ofdev->dev.of_node);
|
||||
if (mac_addr)
|
||||
memcpy(ndev->dev_addr, mac_addr, 6);
|
||||
|
||||
|
|
|
@ -88,19 +88,19 @@ static int do_pd_setup(struct fs_enet_private *fep)
|
|||
struct fs_platform_info *fpi = fep->fpi;
|
||||
int ret = -EINVAL;
|
||||
|
||||
fep->interrupt = of_irq_to_resource(ofdev->node, 0, NULL);
|
||||
fep->interrupt = of_irq_to_resource(ofdev->dev.of_node, 0, NULL);
|
||||
if (fep->interrupt == NO_IRQ)
|
||||
goto out;
|
||||
|
||||
fep->fcc.fccp = of_iomap(ofdev->node, 0);
|
||||
fep->fcc.fccp = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!fep->fcc.fccp)
|
||||
goto out;
|
||||
|
||||
fep->fcc.ep = of_iomap(ofdev->node, 1);
|
||||
fep->fcc.ep = of_iomap(ofdev->dev.of_node, 1);
|
||||
if (!fep->fcc.ep)
|
||||
goto out_fccp;
|
||||
|
||||
fep->fcc.fcccp = of_iomap(ofdev->node, 2);
|
||||
fep->fcc.fcccp = of_iomap(ofdev->dev.of_node, 2);
|
||||
if (!fep->fcc.fcccp)
|
||||
goto out_ep;
|
||||
|
||||
|
|
|
@ -98,11 +98,11 @@ static int do_pd_setup(struct fs_enet_private *fep)
|
|||
{
|
||||
struct of_device *ofdev = to_of_device(fep->dev);
|
||||
|
||||
fep->interrupt = of_irq_to_resource(ofdev->node, 0, NULL);
|
||||
fep->interrupt = of_irq_to_resource(ofdev->dev.of_node, 0, NULL);
|
||||
if (fep->interrupt == NO_IRQ)
|
||||
return -EINVAL;
|
||||
|
||||
fep->fec.fecp = of_iomap(ofdev->node, 0);
|
||||
fep->fec.fecp = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!fep->fcc.fccp)
|
||||
return -EINVAL;
|
||||
|
||||
|
|
|
@ -98,15 +98,15 @@ static int do_pd_setup(struct fs_enet_private *fep)
|
|||
{
|
||||
struct of_device *ofdev = to_of_device(fep->dev);
|
||||
|
||||
fep->interrupt = of_irq_to_resource(ofdev->node, 0, NULL);
|
||||
fep->interrupt = of_irq_to_resource(ofdev->dev.of_node, 0, NULL);
|
||||
if (fep->interrupt == NO_IRQ)
|
||||
return -EINVAL;
|
||||
|
||||
fep->scc.sccp = of_iomap(ofdev->node, 0);
|
||||
fep->scc.sccp = of_iomap(ofdev->dev.of_node, 0);
|
||||
if (!fep->scc.sccp)
|
||||
return -EINVAL;
|
||||
|
||||
fep->scc.ep = of_iomap(ofdev->node, 1);
|
||||
fep->scc.ep = of_iomap(ofdev->dev.of_node, 1);
|
||||
if (!fep->scc.ep) {
|
||||
iounmap(fep->scc.sccp);
|
||||
return -EINVAL;
|
||||
|
|
|
@ -124,7 +124,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev,
|
|||
new_bus->write = &fs_enet_fec_mii_write;
|
||||
new_bus->reset = &fs_enet_fec_mii_reset;
|
||||
|
||||
ret = of_address_to_resource(ofdev->node, 0, &res);
|
||||
ret = of_address_to_resource(ofdev->dev.of_node, 0, &res);
|
||||
if (ret)
|
||||
goto out_res;
|
||||
|
||||
|
@ -135,7 +135,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev,
|
|||
goto out_fec;
|
||||
|
||||
if (get_bus_freq) {
|
||||
clock = get_bus_freq(ofdev->node);
|
||||
clock = get_bus_freq(ofdev->dev.of_node);
|
||||
if (!clock) {
|
||||
/* Use maximum divider if clock is unknown */
|
||||
dev_warn(&ofdev->dev, "could not determine IPS clock\n");
|
||||
|
@ -172,7 +172,7 @@ static int __devinit fs_enet_mdio_probe(struct of_device *ofdev,
|
|||
new_bus->parent = &ofdev->dev;
|
||||
dev_set_drvdata(&ofdev->dev, new_bus);
|
||||
|
||||
ret = of_mdiobus_register(new_bus, ofdev->node);
|
||||
ret = of_mdiobus_register(new_bus, ofdev->dev.of_node);
|
||||
if (ret)
|
||||
goto out_free_irqs;
|
||||
|
||||
|
|
|
@ -271,7 +271,7 @@ static int get_ucc_id_for_range(u64 start, u64 end, u32 *ucc_id)
|
|||
static int fsl_pq_mdio_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct device_node *tbi;
|
||||
struct fsl_pq_mdio_priv *priv;
|
||||
struct fsl_pq_mdio __iomem *regs = NULL;
|
||||
|
|
|
@ -603,7 +603,7 @@ static int gfar_of_init(struct of_device *ofdev, struct net_device **pdev)
|
|||
int err = 0, i;
|
||||
struct net_device *dev = NULL;
|
||||
struct gfar_private *priv = NULL;
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct device_node *child = NULL;
|
||||
const u32 *stash;
|
||||
const u32 *stash_len;
|
||||
|
@ -641,7 +641,7 @@ static int gfar_of_init(struct of_device *ofdev, struct net_device **pdev)
|
|||
return -ENOMEM;
|
||||
|
||||
priv = netdev_priv(dev);
|
||||
priv->node = ofdev->node;
|
||||
priv->node = ofdev->dev.of_node;
|
||||
priv->ndev = dev;
|
||||
|
||||
dev->num_tx_queues = num_tx_qs;
|
||||
|
@ -888,7 +888,7 @@ static int gfar_probe(struct of_device *ofdev,
|
|||
priv = netdev_priv(dev);
|
||||
priv->ndev = dev;
|
||||
priv->ofdev = ofdev;
|
||||
priv->node = ofdev->node;
|
||||
priv->node = ofdev->dev.of_node;
|
||||
SET_NETDEV_DEV(dev, &ofdev->dev);
|
||||
|
||||
spin_lock_init(&priv->bflock);
|
||||
|
|
|
@ -1500,7 +1500,8 @@ static int __devinit greth_of_probe(struct of_device *ofdev, const struct of_dev
|
|||
if (i == 6) {
|
||||
const unsigned char *addr;
|
||||
int len;
|
||||
addr = of_get_property(ofdev->node, "local-mac-address", &len);
|
||||
addr = of_get_property(ofdev->dev.of_node, "local-mac-address",
|
||||
&len);
|
||||
if (addr != NULL && len == 6) {
|
||||
for (i = 0; i < 6; i++)
|
||||
macaddr[i] = (unsigned int) addr[i];
|
||||
|
|
|
@ -136,7 +136,8 @@ static inline void emac_report_timeout_error(struct emac_instance *dev,
|
|||
EMAC_FTR_440EP_PHY_CLK_FIX))
|
||||
DBG(dev, "%s" NL, error);
|
||||
else if (net_ratelimit())
|
||||
printk(KERN_ERR "%s: %s\n", dev->ofdev->node->full_name, error);
|
||||
printk(KERN_ERR "%s: %s\n", dev->ofdev->dev.of_node->full_name,
|
||||
error);
|
||||
}
|
||||
|
||||
/* EMAC PHY clock workaround:
|
||||
|
@ -2185,7 +2186,7 @@ static void emac_ethtool_get_drvinfo(struct net_device *ndev,
|
|||
strcpy(info->version, DRV_VERSION);
|
||||
info->fw_version[0] = '\0';
|
||||
sprintf(info->bus_info, "PPC 4xx EMAC-%d %s",
|
||||
dev->cell_index, dev->ofdev->node->full_name);
|
||||
dev->cell_index, dev->ofdev->dev.of_node->full_name);
|
||||
info->regdump_len = emac_ethtool_get_regs_len(ndev);
|
||||
}
|
||||
|
||||
|
@ -2379,7 +2380,7 @@ static int __devinit emac_read_uint_prop(struct device_node *np, const char *nam
|
|||
|
||||
static int __devinit emac_init_phy(struct emac_instance *dev)
|
||||
{
|
||||
struct device_node *np = dev->ofdev->node;
|
||||
struct device_node *np = dev->ofdev->dev.of_node;
|
||||
struct net_device *ndev = dev->ndev;
|
||||
u32 phy_map, adv;
|
||||
int i;
|
||||
|
@ -2514,7 +2515,7 @@ static int __devinit emac_init_phy(struct emac_instance *dev)
|
|||
|
||||
static int __devinit emac_init_config(struct emac_instance *dev)
|
||||
{
|
||||
struct device_node *np = dev->ofdev->node;
|
||||
struct device_node *np = dev->ofdev->dev.of_node;
|
||||
const void *p;
|
||||
unsigned int plen;
|
||||
const char *pm, *phy_modes[] = {
|
||||
|
@ -2723,7 +2724,7 @@ static int __devinit emac_probe(struct of_device *ofdev,
|
|||
{
|
||||
struct net_device *ndev;
|
||||
struct emac_instance *dev;
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct device_node **blist = NULL;
|
||||
int err, i;
|
||||
|
||||
|
@ -2810,7 +2811,7 @@ static int __devinit emac_probe(struct of_device *ofdev,
|
|||
err = mal_register_commac(dev->mal, &dev->commac);
|
||||
if (err) {
|
||||
printk(KERN_ERR "%s: failed to register with mal %s!\n",
|
||||
np->full_name, dev->mal_dev->node->full_name);
|
||||
np->full_name, dev->mal_dev->dev.of_node->full_name);
|
||||
goto err_rel_deps;
|
||||
}
|
||||
dev->rx_skb_size = emac_rx_skb_size(ndev->mtu);
|
||||
|
|
|
@ -33,7 +33,7 @@ static void emac_desc_dump(struct emac_instance *p)
|
|||
int i;
|
||||
printk("** EMAC %s TX BDs **\n"
|
||||
" tx_cnt = %d tx_slot = %d ack_slot = %d\n",
|
||||
p->ofdev->node->full_name,
|
||||
p->ofdev->dev.of_node->full_name,
|
||||
p->tx_cnt, p->tx_slot, p->ack_slot);
|
||||
for (i = 0; i < NUM_TX_BUFF / 2; ++i)
|
||||
printk
|
||||
|
@ -49,7 +49,7 @@ static void emac_desc_dump(struct emac_instance *p)
|
|||
printk("** EMAC %s RX BDs **\n"
|
||||
" rx_slot = %d flags = 0x%lx rx_skb_size = %d rx_sync_size = %d\n"
|
||||
" rx_sg_skb = 0x%p\n",
|
||||
p->ofdev->node->full_name,
|
||||
p->ofdev->dev.of_node->full_name,
|
||||
p->rx_slot, p->commac.flags, p->rx_skb_size,
|
||||
p->rx_sync_size, p->rx_sg_skb);
|
||||
for (i = 0; i < NUM_RX_BUFF / 2; ++i)
|
||||
|
@ -77,7 +77,8 @@ static void emac_mac_dump(struct emac_instance *dev)
|
|||
"MR0 = 0x%08x MR1 = 0x%08x TMR0 = 0x%08x TMR1 = 0x%08x\n"
|
||||
"RMR = 0x%08x ISR = 0x%08x ISER = 0x%08x\n"
|
||||
"IAR = %04x%08x VTPID = 0x%04x VTCI = 0x%04x\n",
|
||||
dev->ofdev->node->full_name, in_be32(&p->mr0), in_be32(&p->mr1),
|
||||
dev->ofdev->dev.of_node->full_name,
|
||||
in_be32(&p->mr0), in_be32(&p->mr1),
|
||||
in_be32(&p->tmr0), in_be32(&p->tmr1),
|
||||
in_be32(&p->rmr), in_be32(&p->isr), in_be32(&p->iser),
|
||||
in_be32(&p->iahr), in_be32(&p->ialr), in_be32(&p->vtpid),
|
||||
|
@ -128,7 +129,7 @@ static void emac_mal_dump(struct mal_instance *mal)
|
|||
"CFG = 0x%08x ESR = 0x%08x IER = 0x%08x\n"
|
||||
"TX|CASR = 0x%08x CARR = 0x%08x EOBISR = 0x%08x DEIR = 0x%08x\n"
|
||||
"RX|CASR = 0x%08x CARR = 0x%08x EOBISR = 0x%08x DEIR = 0x%08x\n",
|
||||
mal->ofdev->node->full_name,
|
||||
mal->ofdev->dev.of_node->full_name,
|
||||
get_mal_dcrn(mal, MAL_CFG), get_mal_dcrn(mal, MAL_ESR),
|
||||
get_mal_dcrn(mal, MAL_IER),
|
||||
get_mal_dcrn(mal, MAL_TXCASR), get_mal_dcrn(mal, MAL_TXCARR),
|
||||
|
|
|
@ -53,8 +53,8 @@ extern void emac_dbg_dump_all(void);
|
|||
|
||||
#endif
|
||||
|
||||
#define EMAC_DBG(dev, name, fmt, arg...) \
|
||||
printk(KERN_DEBUG #name "%s: " fmt, dev->ofdev->node->full_name, ## arg)
|
||||
#define EMAC_DBG(d, name, fmt, arg...) \
|
||||
printk(KERN_DEBUG #name "%s: " fmt, d->ofdev->dev.of_node->full_name, ## arg)
|
||||
|
||||
#if DBG_LEVEL > 0
|
||||
# define DBG(d,f,x...) EMAC_DBG(d, emac, f, ##x)
|
||||
|
|
|
@ -538,11 +538,11 @@ static int __devinit mal_probe(struct of_device *ofdev,
|
|||
}
|
||||
mal->index = index;
|
||||
mal->ofdev = ofdev;
|
||||
mal->version = of_device_is_compatible(ofdev->node, "ibm,mcmal2") ? 2 : 1;
|
||||
mal->version = of_device_is_compatible(ofdev->dev.of_node, "ibm,mcmal2") ? 2 : 1;
|
||||
|
||||
MAL_DBG(mal, "probe" NL);
|
||||
|
||||
prop = of_get_property(ofdev->node, "num-tx-chans", NULL);
|
||||
prop = of_get_property(ofdev->dev.of_node, "num-tx-chans", NULL);
|
||||
if (prop == NULL) {
|
||||
printk(KERN_ERR
|
||||
"mal%d: can't find MAL num-tx-chans property!\n",
|
||||
|
@ -552,7 +552,7 @@ static int __devinit mal_probe(struct of_device *ofdev,
|
|||
}
|
||||
mal->num_tx_chans = prop[0];
|
||||
|
||||
prop = of_get_property(ofdev->node, "num-rx-chans", NULL);
|
||||
prop = of_get_property(ofdev->dev.of_node, "num-rx-chans", NULL);
|
||||
if (prop == NULL) {
|
||||
printk(KERN_ERR
|
||||
"mal%d: can't find MAL num-rx-chans property!\n",
|
||||
|
@ -562,14 +562,14 @@ static int __devinit mal_probe(struct of_device *ofdev,
|
|||
}
|
||||
mal->num_rx_chans = prop[0];
|
||||
|
||||
dcr_base = dcr_resource_start(ofdev->node, 0);
|
||||
dcr_base = dcr_resource_start(ofdev->dev.of_node, 0);
|
||||
if (dcr_base == 0) {
|
||||
printk(KERN_ERR
|
||||
"mal%d: can't find DCR resource!\n", index);
|
||||
err = -ENODEV;
|
||||
goto fail;
|
||||
}
|
||||
mal->dcr_host = dcr_map(ofdev->node, dcr_base, 0x100);
|
||||
mal->dcr_host = dcr_map(ofdev->dev.of_node, dcr_base, 0x100);
|
||||
if (!DCR_MAP_OK(mal->dcr_host)) {
|
||||
printk(KERN_ERR
|
||||
"mal%d: failed to map DCRs !\n", index);
|
||||
|
@ -577,28 +577,28 @@ static int __devinit mal_probe(struct of_device *ofdev,
|
|||
goto fail;
|
||||
}
|
||||
|
||||
if (of_device_is_compatible(ofdev->node, "ibm,mcmal-405ez")) {
|
||||
if (of_device_is_compatible(ofdev->dev.of_node, "ibm,mcmal-405ez")) {
|
||||
#if defined(CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT) && \
|
||||
defined(CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR)
|
||||
mal->features |= (MAL_FTR_CLEAR_ICINTSTAT |
|
||||
MAL_FTR_COMMON_ERR_INT);
|
||||
#else
|
||||
printk(KERN_ERR "%s: Support for 405EZ not enabled!\n",
|
||||
ofdev->node->full_name);
|
||||
ofdev->dev.of_node->full_name);
|
||||
err = -ENODEV;
|
||||
goto fail;
|
||||
#endif
|
||||
}
|
||||
|
||||
mal->txeob_irq = irq_of_parse_and_map(ofdev->node, 0);
|
||||
mal->rxeob_irq = irq_of_parse_and_map(ofdev->node, 1);
|
||||
mal->serr_irq = irq_of_parse_and_map(ofdev->node, 2);
|
||||
mal->txeob_irq = irq_of_parse_and_map(ofdev->dev.of_node, 0);
|
||||
mal->rxeob_irq = irq_of_parse_and_map(ofdev->dev.of_node, 1);
|
||||
mal->serr_irq = irq_of_parse_and_map(ofdev->dev.of_node, 2);
|
||||
|
||||
if (mal_has_feature(mal, MAL_FTR_COMMON_ERR_INT)) {
|
||||
mal->txde_irq = mal->rxde_irq = mal->serr_irq;
|
||||
} else {
|
||||
mal->txde_irq = irq_of_parse_and_map(ofdev->node, 3);
|
||||
mal->rxde_irq = irq_of_parse_and_map(ofdev->node, 4);
|
||||
mal->txde_irq = irq_of_parse_and_map(ofdev->dev.of_node, 3);
|
||||
mal->rxde_irq = irq_of_parse_and_map(ofdev->dev.of_node, 4);
|
||||
}
|
||||
|
||||
if (mal->txeob_irq == NO_IRQ || mal->rxeob_irq == NO_IRQ ||
|
||||
|
@ -629,7 +629,7 @@ static int __devinit mal_probe(struct of_device *ofdev,
|
|||
/* Current Axon is not happy with priority being non-0, it can
|
||||
* deadlock, fix it up here
|
||||
*/
|
||||
if (of_device_is_compatible(ofdev->node, "ibm,mcmal-axon"))
|
||||
if (of_device_is_compatible(ofdev->dev.of_node, "ibm,mcmal-axon"))
|
||||
cfg &= ~(MAL2_CFG_RPP_10 | MAL2_CFG_WPP_10);
|
||||
|
||||
/* Apply configuration */
|
||||
|
@ -701,7 +701,7 @@ static int __devinit mal_probe(struct of_device *ofdev,
|
|||
|
||||
printk(KERN_INFO
|
||||
"MAL v%d %s, %d TX channels, %d RX channels\n",
|
||||
mal->version, ofdev->node->full_name,
|
||||
mal->version, ofdev->dev.of_node->full_name,
|
||||
mal->num_tx_chans, mal->num_rx_chans);
|
||||
|
||||
/* Advertise this instance to the rest of the world */
|
||||
|
|
|
@ -103,7 +103,7 @@ int __devinit rgmii_attach(struct of_device *ofdev, int input, int mode)
|
|||
/* Check if we need to attach to a RGMII */
|
||||
if (input < 0 || !rgmii_valid_mode(mode)) {
|
||||
printk(KERN_ERR "%s: unsupported settings !\n",
|
||||
ofdev->node->full_name);
|
||||
ofdev->dev.of_node->full_name);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
|
@ -113,7 +113,7 @@ int __devinit rgmii_attach(struct of_device *ofdev, int input, int mode)
|
|||
out_be32(&p->fer, in_be32(&p->fer) | rgmii_mode_mask(mode, input));
|
||||
|
||||
printk(KERN_NOTICE "%s: input %d in %s mode\n",
|
||||
ofdev->node->full_name, input, rgmii_mode_name(mode));
|
||||
ofdev->dev.of_node->full_name, input, rgmii_mode_name(mode));
|
||||
|
||||
++dev->users;
|
||||
|
||||
|
@ -231,7 +231,7 @@ void *rgmii_dump_regs(struct of_device *ofdev, void *buf)
|
|||
static int __devinit rgmii_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct rgmii_instance *dev;
|
||||
struct resource regs;
|
||||
int rc;
|
||||
|
@ -264,11 +264,11 @@ static int __devinit rgmii_probe(struct of_device *ofdev,
|
|||
}
|
||||
|
||||
/* Check for RGMII flags */
|
||||
if (of_get_property(ofdev->node, "has-mdio", NULL))
|
||||
if (of_get_property(ofdev->dev.of_node, "has-mdio", NULL))
|
||||
dev->flags |= EMAC_RGMII_FLAG_HAS_MDIO;
|
||||
|
||||
/* CAB lacks the right properties, fix this up */
|
||||
if (of_device_is_compatible(ofdev->node, "ibm,rgmii-axon"))
|
||||
if (of_device_is_compatible(ofdev->dev.of_node, "ibm,rgmii-axon"))
|
||||
dev->flags |= EMAC_RGMII_FLAG_HAS_MDIO;
|
||||
|
||||
DBG2(dev, " Boot FER = 0x%08x, SSR = 0x%08x\n",
|
||||
|
@ -279,7 +279,7 @@ static int __devinit rgmii_probe(struct of_device *ofdev,
|
|||
|
||||
printk(KERN_INFO
|
||||
"RGMII %s initialized with%s MDIO support\n",
|
||||
ofdev->node->full_name,
|
||||
ofdev->dev.of_node->full_name,
|
||||
(dev->flags & EMAC_RGMII_FLAG_HAS_MDIO) ? "" : "out");
|
||||
|
||||
wmb();
|
||||
|
|
|
@ -57,7 +57,8 @@ void tah_reset(struct of_device *ofdev)
|
|||
--n;
|
||||
|
||||
if (unlikely(!n))
|
||||
printk(KERN_ERR "%s: reset timeout\n", ofdev->node->full_name);
|
||||
printk(KERN_ERR "%s: reset timeout\n",
|
||||
ofdev->dev.of_node->full_name);
|
||||
|
||||
/* 10KB TAH TX FIFO accomodates the max MTU of 9000 */
|
||||
out_be32(&p->mr,
|
||||
|
@ -89,7 +90,7 @@ void *tah_dump_regs(struct of_device *ofdev, void *buf)
|
|||
static int __devinit tah_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct tah_instance *dev;
|
||||
struct resource regs;
|
||||
int rc;
|
||||
|
@ -127,7 +128,7 @@ static int __devinit tah_probe(struct of_device *ofdev,
|
|||
tah_reset(ofdev);
|
||||
|
||||
printk(KERN_INFO
|
||||
"TAH %s initialized\n", ofdev->node->full_name);
|
||||
"TAH %s initialized\n", ofdev->dev.of_node->full_name);
|
||||
wmb();
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -121,13 +121,14 @@ int __devinit zmii_attach(struct of_device *ofdev, int input, int *mode)
|
|||
dev->mode = *mode;
|
||||
|
||||
printk(KERN_NOTICE "%s: bridge in %s mode\n",
|
||||
ofdev->node->full_name, zmii_mode_name(dev->mode));
|
||||
ofdev->dev.of_node->full_name,
|
||||
zmii_mode_name(dev->mode));
|
||||
} else {
|
||||
/* All inputs must use the same mode */
|
||||
if (*mode != PHY_MODE_NA && *mode != dev->mode) {
|
||||
printk(KERN_ERR
|
||||
"%s: invalid mode %d specified for input %d\n",
|
||||
ofdev->node->full_name, *mode, input);
|
||||
ofdev->dev.of_node->full_name, *mode, input);
|
||||
mutex_unlock(&dev->lock);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
@ -233,7 +234,7 @@ void *zmii_dump_regs(struct of_device *ofdev, void *buf)
|
|||
static int __devinit zmii_probe(struct of_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *np = ofdev->node;
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct zmii_instance *dev;
|
||||
struct resource regs;
|
||||
int rc;
|
||||
|
@ -273,7 +274,7 @@ static int __devinit zmii_probe(struct of_device *ofdev,
|
|||
out_be32(&dev->base->fer, 0);
|
||||
|
||||
printk(KERN_INFO
|
||||
"ZMII %s initialized\n", ofdev->node->full_name);
|
||||
"ZMII %s initialized\n", ofdev->dev.of_node->full_name);
|
||||
wmb();
|
||||
dev_set_drvdata(&ofdev->dev, dev);
|
||||
|
||||
|
|
|
@ -858,14 +858,14 @@ temac_of_probe(struct of_device *op, const struct of_device_id *match)
|
|||
mutex_init(&lp->indirect_mutex);
|
||||
|
||||
/* map device registers */
|
||||
lp->regs = of_iomap(op->node, 0);
|
||||
lp->regs = of_iomap(op->dev.of_node, 0);
|
||||
if (!lp->regs) {
|
||||
dev_err(&op->dev, "could not map temac regs.\n");
|
||||
goto nodev;
|
||||
}
|
||||
|
||||
/* Find the DMA node, map the DMA registers, and decode the DMA IRQs */
|
||||
np = of_parse_phandle(op->node, "llink-connected", 0);
|
||||
np = of_parse_phandle(op->dev.of_node, "llink-connected", 0);
|
||||
if (!np) {
|
||||
dev_err(&op->dev, "could not find DMA node\n");
|
||||
goto nodev;
|
||||
|
@ -890,7 +890,7 @@ temac_of_probe(struct of_device *op, const struct of_device_id *match)
|
|||
of_node_put(np); /* Finished with the DMA node; drop the reference */
|
||||
|
||||
/* Retrieve the MAC address */
|
||||
addr = of_get_property(op->node, "local-mac-address", &size);
|
||||
addr = of_get_property(op->dev.of_node, "local-mac-address", &size);
|
||||
if ((!addr) || (size != 6)) {
|
||||
dev_err(&op->dev, "could not find MAC address\n");
|
||||
rc = -ENODEV;
|
||||
|
@ -898,11 +898,11 @@ temac_of_probe(struct of_device *op, const struct of_device_id *match)
|
|||
}
|
||||
temac_set_mac_address(ndev, (void *)addr);
|
||||
|
||||
rc = temac_mdio_setup(lp, op->node);
|
||||
rc = temac_mdio_setup(lp, op->dev.of_node);
|
||||
if (rc)
|
||||
dev_warn(&op->dev, "error registering MDIO bus\n");
|
||||
|
||||
lp->phy_node = of_parse_phandle(op->node, "phy-handle", 0);
|
||||
lp->phy_node = of_parse_phandle(op->dev.of_node, "phy-handle", 0);
|
||||
if (lp->phy_node)
|
||||
dev_dbg(lp->dev, "using PHY node %s (%p)\n", np->full_name, np);
|
||||
|
||||
|
|
|
@ -928,7 +928,7 @@ static const struct net_device_ops myri_ops = {
|
|||
|
||||
static int __devinit myri_sbus_probe(struct of_device *op, const struct of_device_id *match)
|
||||
{
|
||||
struct device_node *dp = op->node;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
static unsigned version_printed;
|
||||
struct net_device *dev;
|
||||
struct myri_eth *mp;
|
||||
|
|
|
@ -9094,7 +9094,7 @@ static int __devinit niu_n2_irq_init(struct niu *np, u8 *ldg_num_map)
|
|||
const u32 *int_prop;
|
||||
int i;
|
||||
|
||||
int_prop = of_get_property(op->node, "interrupts", NULL);
|
||||
int_prop = of_get_property(op->dev.of_node, "interrupts", NULL);
|
||||
if (!int_prop)
|
||||
return -ENODEV;
|
||||
|
||||
|
@ -9245,7 +9245,7 @@ static int __devinit niu_get_of_props(struct niu *np)
|
|||
int prop_len;
|
||||
|
||||
if (np->parent->plat_type == PLAT_TYPE_NIU)
|
||||
dp = np->op->node;
|
||||
dp = np->op->dev.of_node;
|
||||
else
|
||||
dp = pci_device_to_OF_node(np->pdev);
|
||||
|
||||
|
@ -10056,10 +10056,10 @@ static int __devinit niu_of_probe(struct of_device *op,
|
|||
|
||||
niu_driver_version();
|
||||
|
||||
reg = of_get_property(op->node, "reg", NULL);
|
||||
reg = of_get_property(op->dev.of_node, "reg", NULL);
|
||||
if (!reg) {
|
||||
dev_err(&op->dev, "%s: No 'reg' property, aborting\n",
|
||||
op->node->full_name);
|
||||
op->dev.of_node->full_name);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
|
@ -10072,7 +10072,7 @@ static int __devinit niu_of_probe(struct of_device *op,
|
|||
np = netdev_priv(dev);
|
||||
|
||||
memset(&parent_id, 0, sizeof(parent_id));
|
||||
parent_id.of = of_get_parent(op->node);
|
||||
parent_id.of = of_get_parent(op->dev.of_node);
|
||||
|
||||
np->parent = niu_get_parent(np, &parent_id,
|
||||
PLAT_TYPE_NIU);
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue