aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/pci/cx25821/cx25821-alsa.c2
-rw-r--r--drivers/media/pci/cx25821/cx25821-core.c2
-rw-r--r--drivers/media/pci/sta2x11/sta2x11_vip.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/pci/cx25821/cx25821-alsa.c b/drivers/media/pci/cx25821/cx25821-alsa.c
index 6e91e84d6bf9..b1e08c3e55cd 100644
--- a/drivers/media/pci/cx25821/cx25821-alsa.c
+++ b/drivers/media/pci/cx25821/cx25821-alsa.c
@@ -618,7 +618,7 @@ static int snd_cx25821_pcm(struct cx25821_audio_dev *chip, int device,
618 * Only boards with eeprom and byte 1 at eeprom=1 have it 618 * Only boards with eeprom and byte 1 at eeprom=1 have it
619 */ 619 */
620 620
621static DEFINE_PCI_DEVICE_TABLE(cx25821_audio_pci_tbl) = { 621static const struct pci_device_id cx25821_audio_pci_tbl[] = {
622 {0x14f1, 0x0920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, 622 {0x14f1, 0x0920, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
623 {0,} 623 {0,}
624}; 624};
diff --git a/drivers/media/pci/cx25821/cx25821-core.c b/drivers/media/pci/cx25821/cx25821-core.c
index b762c5b2ca10..e81173c41e5a 100644
--- a/drivers/media/pci/cx25821/cx25821-core.c
+++ b/drivers/media/pci/cx25821/cx25821-core.c
@@ -1361,7 +1361,7 @@ static void cx25821_finidev(struct pci_dev *pci_dev)
1361 kfree(dev); 1361 kfree(dev);
1362} 1362}
1363 1363
1364static DEFINE_PCI_DEVICE_TABLE(cx25821_pci_tbl) = { 1364static const struct pci_device_id cx25821_pci_tbl[] = {
1365 { 1365 {
1366 /* CX25821 Athena */ 1366 /* CX25821 Athena */
1367 .vendor = 0x14f1, 1367 .vendor = 0x14f1,
diff --git a/drivers/media/pci/sta2x11/sta2x11_vip.c b/drivers/media/pci/sta2x11/sta2x11_vip.c
index 77edc113e485..e5cfb6cfa18d 100644
--- a/drivers/media/pci/sta2x11/sta2x11_vip.c
+++ b/drivers/media/pci/sta2x11/sta2x11_vip.c
@@ -1303,7 +1303,7 @@ static int sta2x11_vip_resume(struct pci_dev *pdev)
1303 1303
1304#endif 1304#endif
1305 1305
1306static DEFINE_PCI_DEVICE_TABLE(sta2x11_vip_pci_tbl) = { 1306static const struct pci_device_id sta2x11_vip_pci_tbl[] = {
1307 {PCI_DEVICE(PCI_VENDOR_ID_STMICRO, PCI_DEVICE_ID_STMICRO_VIP)}, 1307 {PCI_DEVICE(PCI_VENDOR_ID_STMICRO, PCI_DEVICE_ID_STMICRO_VIP)},
1308 {0,} 1308 {0,}
1309}; 1309};