mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[media] saa7134: Fix autodetect for Behold A7 and H7 TV cards
The entries for those cards are after the generic entries, so they don't work, in practice. Moving them to happen before the generic entres fix the issue. Signed-off-by: Beholder Intl. Ltd. Dmitry Belimov <d.belimov@gmail.com> Cc: stable@kernel.org Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
0edf2e5e2b
commit
35bbe587d0
1 changed files with 12 additions and 12 deletions
|
@ -6660,6 +6660,18 @@ struct pci_device_id saa7134_pci_tbl[] = {
|
|||
.subvendor = 0x13c2,
|
||||
.subdevice = 0x2804,
|
||||
.driver_data = SAA7134_BOARD_TECHNOTREND_BUDGET_T3000,
|
||||
}, {
|
||||
.vendor = PCI_VENDOR_ID_PHILIPS,
|
||||
.device = PCI_DEVICE_ID_PHILIPS_SAA7133,
|
||||
.subvendor = 0x5ace, /* Beholder Intl. Ltd. */
|
||||
.subdevice = 0x7190,
|
||||
.driver_data = SAA7134_BOARD_BEHOLD_H7,
|
||||
}, {
|
||||
.vendor = PCI_VENDOR_ID_PHILIPS,
|
||||
.device = PCI_DEVICE_ID_PHILIPS_SAA7133,
|
||||
.subvendor = 0x5ace, /* Beholder Intl. Ltd. */
|
||||
.subdevice = 0x7090,
|
||||
.driver_data = SAA7134_BOARD_BEHOLD_A7,
|
||||
}, {
|
||||
/* --- boards without eeprom + subsystem ID --- */
|
||||
.vendor = PCI_VENDOR_ID_PHILIPS,
|
||||
|
@ -6698,18 +6710,6 @@ struct pci_device_id saa7134_pci_tbl[] = {
|
|||
.subvendor = PCI_ANY_ID,
|
||||
.subdevice = PCI_ANY_ID,
|
||||
.driver_data = SAA7134_BOARD_UNKNOWN,
|
||||
}, {
|
||||
.vendor = PCI_VENDOR_ID_PHILIPS,
|
||||
.device = PCI_DEVICE_ID_PHILIPS_SAA7133,
|
||||
.subvendor = 0x5ace, /* Beholder Intl. Ltd. */
|
||||
.subdevice = 0x7190,
|
||||
.driver_data = SAA7134_BOARD_BEHOLD_H7,
|
||||
}, {
|
||||
.vendor = PCI_VENDOR_ID_PHILIPS,
|
||||
.device = PCI_DEVICE_ID_PHILIPS_SAA7133,
|
||||
.subvendor = 0x5ace, /* Beholder Intl. Ltd. */
|
||||
.subdevice = 0x7090,
|
||||
.driver_data = SAA7134_BOARD_BEHOLD_A7,
|
||||
},{
|
||||
/* --- end of list --- */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue