Commit 2229c1fb authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Bjorn Helgaas

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: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0f49ba55
...@@ -135,6 +135,7 @@ store_new_id(struct device_driver *driver, const char *buf, size_t count) ...@@ -135,6 +135,7 @@ store_new_id(struct device_driver *driver, const char *buf, size_t count)
return retval; return retval;
return count; return count;
} }
static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
/** /**
* store_remove_id - remove a PCI device ID from this driver * 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,12 +181,14 @@ store_remove_id(struct device_driver *driver, const char *buf, size_t count)
return retval; return retval;
return count; return count;
} }
static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
static struct driver_attribute pci_drv_attrs[] = { static struct attribute *pci_drv_attrs[] = {
__ATTR(new_id, S_IWUSR, NULL, store_new_id), &driver_attr_new_id.attr,
__ATTR(remove_id, S_IWUSR, NULL, store_remove_id), &driver_attr_remove_id.attr,
__ATTR_NULL, NULL,
}; };
ATTRIBUTE_GROUPS(pci_drv);
/** /**
* pci_match_id - See if a pci device matches a given pci_id table * 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,7 +1321,7 @@ struct bus_type pci_bus_type = {
.shutdown = pci_device_shutdown, .shutdown = pci_device_shutdown,
.dev_attrs = pci_dev_attrs, .dev_attrs = pci_dev_attrs,
.bus_groups = pci_bus_groups, .bus_groups = pci_bus_groups,
.drv_attrs = pci_drv_attrs, .drv_groups = pci_drv_groups,
.pm = PCI_PM_OPS_PTR, .pm = PCI_PM_OPS_PTR,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment