aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci-driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/pci-driver.c')
-rw-r--r--drivers/pci/pci-driver.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
index b60fe6737f78..840fdc5ba0d8 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
@@ -1307,9 +1310,9 @@ struct bus_type pci_bus_type = {
1307 .probe = pci_device_probe, 1310 .probe = pci_device_probe,
1308 .remove = pci_device_remove, 1311 .remove = pci_device_remove,
1309 .shutdown = pci_device_shutdown, 1312 .shutdown = pci_device_shutdown,
1310 .dev_attrs = pci_dev_attrs, 1313 .dev_groups = pci_dev_groups,
1311 .bus_attrs = pci_bus_attrs, 1314 .bus_groups = pci_bus_groups,
1312 .drv_attrs = pci_drv_attrs, 1315 .drv_groups = pci_drv_groups,
1313 .pm = PCI_PM_OPS_PTR, 1316 .pm = PCI_PM_OPS_PTR,
1314}; 1317};
1315 1318