diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-02 13:46:57 -0400 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2017-08-31 09:45:55 -0400 |
commit | fff219d90c8220f9e8a254d792537503cfb93017 (patch) | |
tree | 17b2eccbf9f7d8601fc30647c61281449938db13 | |
parent | b4feaeb036b2e0f715e0d05ae84da01c6696a75f (diff) |
xen-platform: constify pci_device_id.
pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
-rw-r--r-- | drivers/xen/platform-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/platform-pci.c b/drivers/xen/platform-pci.c index 1275df83070f..5d7dcad0b0a0 100644 --- a/drivers/xen/platform-pci.c +++ b/drivers/xen/platform-pci.c | |||
@@ -175,7 +175,7 @@ pci_out: | |||
175 | return ret; | 175 | return ret; |
176 | } | 176 | } |
177 | 177 | ||
178 | static struct pci_device_id platform_pci_tbl[] = { | 178 | static const struct pci_device_id platform_pci_tbl[] = { |
179 | {PCI_VENDOR_ID_XEN, PCI_DEVICE_ID_XEN_PLATFORM, | 179 | {PCI_VENDOR_ID_XEN, PCI_DEVICE_ID_XEN_PLATFORM, |
180 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 180 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
181 | {0,} | 181 | {0,} |