summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorRoland Dreier2006-03-30 22:55:10 +0200
committerGreg Kroah-Hartman2006-04-14 21:25:25 +0200
commite778272dd547d53dedf92240e8b3dbdee44b87b6 (patch)
treec1111469138de441027d92e12c98cda4a3ac0292 /include/linux
parent[PATCH] pci_ids.h: correct naming of 1022:7450 (AMD 8131 Bridge) (diff)
downloadkernel-qcow2-linux-e778272dd547d53dedf92240e8b3dbdee44b87b6.tar.gz
kernel-qcow2-linux-e778272dd547d53dedf92240e8b3dbdee44b87b6.tar.xz
kernel-qcow2-linux-e778272dd547d53dedf92240e8b3dbdee44b87b6.zip
[PATCH] PCI: fix sparse warning about pci_bus_flags
Sparse warns about casting to a __bitwise type. However, it's correct to do when defining the enum for pci_bus_flags_t, so add a __force to quiet the warnings. This will fix getting include/linux/pci.h:100:26: warning: cast to restricted type from sparse all over the build. Signed-off-by: Roland Dreier <rolandd@cisco.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/pci.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 15e1675edef9..3a6a4e37a482 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -97,7 +97,7 @@ enum pci_channel_state {
typedef unsigned short __bitwise pci_bus_flags_t;
enum pci_bus_flags {
- PCI_BUS_FLAGS_NO_MSI = (pci_bus_flags_t) 1,
+ PCI_BUS_FLAGS_NO_MSI = (__force pci_bus_flags_t) 1,
};
struct pci_cap_saved_state {