diff options
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/ml_ioh_gpio.c | 1 | ||||
-rw-r--r-- | drivers/gpio/pch_gpio.c | 1 | ||||
-rw-r--r-- | drivers/gpio/pl061.c | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpio/ml_ioh_gpio.c b/drivers/gpio/ml_ioh_gpio.c index cead8e6ff345..7f6f01a4b145 100644 --- a/drivers/gpio/ml_ioh_gpio.c +++ b/drivers/gpio/ml_ioh_gpio.c | |||
@@ -326,6 +326,7 @@ static DEFINE_PCI_DEVICE_TABLE(ioh_gpio_pcidev_id) = { | |||
326 | { PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x802E) }, | 326 | { PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x802E) }, |
327 | { 0, } | 327 | { 0, } |
328 | }; | 328 | }; |
329 | MODULE_DEVICE_TABLE(pci, ioh_gpio_pcidev_id); | ||
329 | 330 | ||
330 | static struct pci_driver ioh_gpio_driver = { | 331 | static struct pci_driver ioh_gpio_driver = { |
331 | .name = "ml_ioh_gpio", | 332 | .name = "ml_ioh_gpio", |
diff --git a/drivers/gpio/pch_gpio.c b/drivers/gpio/pch_gpio.c index 0eba0a75c804..2c6af8705103 100644 --- a/drivers/gpio/pch_gpio.c +++ b/drivers/gpio/pch_gpio.c | |||
@@ -286,6 +286,7 @@ static DEFINE_PCI_DEVICE_TABLE(pch_gpio_pcidev_id) = { | |||
286 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8803) }, | 286 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8803) }, |
287 | { 0, } | 287 | { 0, } |
288 | }; | 288 | }; |
289 | MODULE_DEVICE_TABLE(pci, pch_gpio_pcidev_id); | ||
289 | 290 | ||
290 | static struct pci_driver pch_gpio_driver = { | 291 | static struct pci_driver pch_gpio_driver = { |
291 | .name = "pch_gpio", | 292 | .name = "pch_gpio", |
diff --git a/drivers/gpio/pl061.c b/drivers/gpio/pl061.c index 2975d22daffe..838ddbdf90cc 100644 --- a/drivers/gpio/pl061.c +++ b/drivers/gpio/pl061.c | |||
@@ -232,7 +232,7 @@ static void pl061_irq_handler(unsigned irq, struct irq_desc *desc) | |||
232 | desc->irq_data.chip->irq_unmask(&desc->irq_data); | 232 | desc->irq_data.chip->irq_unmask(&desc->irq_data); |
233 | } | 233 | } |
234 | 234 | ||
235 | static int pl061_probe(struct amba_device *dev, struct amba_id *id) | 235 | static int pl061_probe(struct amba_device *dev, const struct amba_id *id) |
236 | { | 236 | { |
237 | struct pl061_platform_data *pdata; | 237 | struct pl061_platform_data *pdata; |
238 | struct pl061_gpio *chip; | 238 | struct pl061_gpio *chip; |