aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-07 16:51:20 -0400
committerBjorn Helgaas <bhelgaas@google.com>2013-10-07 16:51:20 -0400
commit2229c1fbc5bd3bd7eb376285de159d086e79d58a (patch)
treeaea7651eb7fc0aa9e465913f1b399ce2f55fa9e4 /drivers/pci
parent0f49ba5599048aae2fb3479a1814736e969cf38c (diff)
PCI: convert bus code to use drv_groups
The drv_attrs field of struct bus_type is going away soon, drv_groups should be used instead. This converts the PCI bus code to use the correct field. Cc: Bjorn Helgaas <bhelgaas@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/pci-driver.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
index e00f74143115..38f3c0140dfb 100644
--- a/drivers/pci/pci-driver.c
+++ b/drivers/pci/pci-driver.c
@@ -135,6 +135,7 @@ store_new_id(struct device_driver *driver, const char *buf, size_t count)
135 return retval; 135 return retval;
136 return count; 136 return count;
137} 137}
138static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
138 139
139/** 140/**
140 * store_remove_id - remove a PCI device ID from this driver 141 * store_remove_id - remove a PCI device ID from this driver
@@ -180,12 +181,14 @@ store_remove_id(struct device_driver *driver, const char *buf, size_t count)
180 return retval; 181 return retval;
181 return count; 182 return count;
182} 183}
184static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
183 185
184static struct driver_attribute pci_drv_attrs[] = { 186static struct attribute *pci_drv_attrs[] = {
185 __ATTR(new_id, S_IWUSR, NULL, store_new_id), 187 &driver_attr_new_id.attr,
186 __ATTR(remove_id, S_IWUSR, NULL, store_remove_id), 188 &driver_attr_remove_id.attr,
187 __ATTR_NULL, 189 NULL,
188}; 190};
191ATTRIBUTE_GROUPS(pci_drv);
189 192
190/** 193/**
191 * pci_match_id - See if a pci device matches a given pci_id table 194 * pci_match_id - See if a pci device matches a given pci_id table
@@ -1318,7 +1321,7 @@ struct bus_type pci_bus_type = {
1318 .shutdown = pci_device_shutdown, 1321 .shutdown = pci_device_shutdown,
1319 .dev_attrs = pci_dev_attrs, 1322 .dev_attrs = pci_dev_attrs,
1320 .bus_groups = pci_bus_groups, 1323 .bus_groups = pci_bus_groups,
1321 .drv_attrs = pci_drv_attrs, 1324 .drv_groups = pci_drv_groups,
1322 .pm = PCI_PM_OPS_PTR, 1325 .pm = PCI_PM_OPS_PTR,
1323}; 1326};
1324 1327