PCI/sysfs: Convert "reset" to static attribute
authorKrzysztof Wilczyński <kw@linux.com>
Fri, 16 Apr 2021 20:58:39 +0000 (20:58 +0000)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 27 Apr 2021 22:53:20 +0000 (17:53 -0500)
commitf42c35ea3b137c01b3e073232131674be8efb924
tree281f028a1eaae2fbf2f0a6b2253572e744c93c86
parent527139d738d7f2e9f929c752eebf3cbf0f74c754
PCI/sysfs: Convert "reset" to static attribute

The "reset" sysfs attribute allows for resetting a PCI function.
Previously it was dynamically created either by pci_bus_add_device() or
the pci_sysfs_init() initcall, but since it doesn't need to be created or
removed dynamically, we can use a static attribute so the device model
takes care of addition and removal automatically.

Convert "reset" to a static attribute and use the .is_visible() callback to
check whether the device supports reset.

Clear reset_fn in pci_stop_dev() instead of pci_remove_capabilities_sysfs()
since we no longer explicitly remove the "reset" sysfs file.

[bhelgaas: commit log]
Suggested-by: Oliver O'Halloran <oohall@gmail.com>
Link: https://lore.kernel.org/r/20210416205856.3234481-4-kw@linux.com
Signed-off-by: Krzysztof Wilczyński <kw@linux.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/pci-sysfs.c
drivers/pci/remove.c