diff options
author | Mathias Krause <minipli@googlemail.com> | 2012-09-02 23:37:24 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-09-10 18:06:30 -0600 |
commit | 769ae543dc8d5745e1ade88cbcf1271a96276fd2 (patch) | |
tree | dfe49ee8a6064ad7effd4fdbcf2fc22cb1ebf71b | |
parent | 67de07a77eed3970c39653a0e4d636b46ddfd83a (diff) | |
download | linux-3.10-769ae543dc8d5745e1ade88cbcf1271a96276fd2.tar.gz linux-3.10-769ae543dc8d5745e1ade88cbcf1271a96276fd2.tar.bz2 linux-3.10-769ae543dc8d5745e1ade88cbcf1271a96276fd2.zip |
PCI: Drop duplicate const in DECLARE_PCI_FIXUP_SECTION
It's redundant and makes sparse complain about it.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r-- | include/linux/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 5faa8310eec..aee24a8bc09 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1472,7 +1472,7 @@ enum pci_fixup_pass { /* Anonymous variables would be nice... */ #define DECLARE_PCI_FIXUP_SECTION(section, name, vendor, device, class, \ class_shift, hook) \ - static const struct pci_fixup const __pci_fixup_##name __used \ + static const struct pci_fixup __pci_fixup_##name __used \ __attribute__((__section__(#section), aligned((sizeof(void *))))) \ = { vendor, device, class, class_shift, hook }; |