mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
PCI: add pci_clear_flags()
Add a pci_clear_flags() for cases when we statically initialize pci_flags, then decide to clear things out later. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
47087700ce
commit
dcce6dc486
@ -45,6 +45,11 @@ static inline void pci_add_flags(int flags)
|
||||
pci_flags |= flags;
|
||||
}
|
||||
|
||||
static inline void pci_clear_flags(int flags)
|
||||
{
|
||||
pci_flags &= ~flags;
|
||||
}
|
||||
|
||||
static inline int pci_has_flag(int flag)
|
||||
{
|
||||
return pci_flags & flag;
|
||||
@ -52,6 +57,7 @@ static inline int pci_has_flag(int flag)
|
||||
#else
|
||||
static inline void pci_set_flags(int flags) { }
|
||||
static inline void pci_add_flags(int flags) { }
|
||||
static inline void pci_clear_flags(int flags) { }
|
||||
static inline int pci_has_flag(int flag)
|
||||
{
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user