This patch populates the PCI bus info in the ethtool driver query data.
Users will be able to view PCI bus info using 'ethtool -i <interface>'.
Signed-off-by: Wong Vee Khee <vee.khee.wong@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        int ret;
        int i;
 
+       plat->pdev = pdev;
        plat->phy_addr = -1;
        plat->clk_csr = 5;
        plat->has_gmac = 0;
 
                strlcpy(info->driver, MAC100_ETHTOOL_NAME,
                        sizeof(info->driver));
 
+       if (priv->plat->pdev) {
+               strlcpy(info->bus_info, pci_name(priv->plat->pdev),
+                       sizeof(info->bus_info));
+       }
        strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
 }
 
 
        bool vlan_fail_q_en;
        u8 vlan_fail_q;
        unsigned int eee_usecs_rate;
+       struct pci_dev *pdev;
 };
 #endif