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:
@@ -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,
|
||||
|
Reference in New Issue
Block a user