From: Jesse Barnes Date: Mon, 28 Apr 2008 19:30:35 +0000 (-0700) Subject: PCI: don't expose struct pci_vpd to userspace X-Git-Tag: v2.6.26-rc1~364^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ee69439cc1dcadbae42ece1caa1ec1786560f7aa;p=karo-tx-linux.git PCI: don't expose struct pci_vpd to userspace We just need to forward declare it for struct pci_dev, not expose it outside of __KERNEL__. Signed-off-by: Jesse Barnes --- diff --git a/include/linux/pci.h b/include/linux/pci.h index 292491324b01..7a0770d4c4e2 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -20,8 +20,6 @@ /* Include the pci register defines */ #include -struct pci_vpd; - /* * The PCI interface treats multi-function devices as independent * devices. The slot/function address of each device is encoded @@ -131,6 +129,8 @@ struct pci_cap_saved_state { }; struct pcie_link_state; +struct pci_vpd; + /* * The pci_dev structure is used to describe PCI devices. */