summaryrefslogtreecommitdiff
path: root/drivers/pci/pci.h
diff options
context:
space:
mode:
authorPhilipp Stanner <pstanner@redhat.com>2024-06-13 13:50:20 +0200
committerKrzysztof Wilczyński <kwilczynski@kernel.org>2024-07-10 04:20:06 +0000
commit77f79ac8de0f490fca4f0a5f2e1e38eeee191f05 (patch)
treef4f728eea52ed511c54d68400388bf870665eac7 /drivers/pci/pci.h
parent81fcf28e74a3ffda67a6896cd38843d80bc9ec68 (diff)
downloadlinux-77f79ac8de0f490fca4f0a5f2e1e38eeee191f05.tar.gz
linux-77f79ac8de0f490fca4f0a5f2e1e38eeee191f05.tar.bz2
linux-77f79ac8de0f490fca4f0a5f2e1e38eeee191f05.zip
PCI: Remove struct pci_devres.enabled status bit
The struct pci_devres has a separate boolean to track whether a device is enabled. That, however, can easily be tracked in an agnostic manner through the function pci_is_enabled(). Using it allows for simplifying the PCI devres implementation. Replace the separate 'enabled' status bit from struct pci_devres with calls to pci_is_enabled() at the appropriate places. Link: https://lore.kernel.org/r/20240613115032.29098-8-pstanner@redhat.com Signed-off-by: Philipp Stanner <pstanner@redhat.com> Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/pci.h')
-rw-r--r--drivers/pci/pci.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index 37894852c2a0..4f220bbbd4ae 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -821,7 +821,6 @@ static inline pci_power_t mid_pci_get_power_state(struct pci_dev *pdev)
* then remove them from here.
*/
struct pci_devres {
- unsigned int enabled:1;
unsigned int pinned:1;
unsigned int orig_intx:1;
unsigned int restore_intx:1;