diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-02 18:08:45 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-12-03 07:16:09 -0500 |
commit | 14f4a8838acac0fe6bf710ec08fc4cce57c0011b (patch) | |
tree | 0aa70c2b0b9856a101ef623af771b0b2cfd35944 /drivers/gpio/gpio-amd8111.c | |
parent | 0299b77b44531ae0963fe86d8b9cb9b5ddb584b7 (diff) |
gpio: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro
is not preferred.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-amd8111.c')
-rw-r--r-- | drivers/gpio/gpio-amd8111.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-amd8111.c b/drivers/gpio/gpio-amd8111.c index 710fafcdd1b1..94e9992f8904 100644 --- a/drivers/gpio/gpio-amd8111.c +++ b/drivers/gpio/gpio-amd8111.c | |||
@@ -60,7 +60,7 @@ | |||
60 | * register a pci_driver, because someone else might one day | 60 | * register a pci_driver, because someone else might one day |
61 | * want to register another driver on the same PCI id. | 61 | * want to register another driver on the same PCI id. |
62 | */ | 62 | */ |
63 | static DEFINE_PCI_DEVICE_TABLE(pci_tbl) = { | 63 | static const struct pci_device_id pci_tbl[] = { |
64 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_SMBUS), 0 }, | 64 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_SMBUS), 0 }, |
65 | { 0, }, /* terminate list */ | 65 | { 0, }, /* terminate list */ |
66 | }; | 66 | }; |