mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 02:36:44 +07:00
V4L/DVB (8308): sms1xxx: Provide option to support Siano default usb ids
Provide an option to enable / disable support for Siano's default usb ids. This allows the support for Siano's USB IDs to be disabled, so that Siano's external driver can be used, instead. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
eb383bddc5
commit
14a638cd3b
@ -3,14 +3,24 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
config DVB_SIANO_SMS1XXX
|
config DVB_SIANO_SMS1XXX
|
||||||
tristate "Siano SMS1xxx USB dongle support"
|
tristate "Siano SMS1XXX USB dongle support"
|
||||||
depends on DVB_CORE && USB
|
depends on DVB_CORE && USB
|
||||||
---help---
|
---help---
|
||||||
Choose Y here if you have USB dongle with SMS1xxx chipset.
|
Choose Y here if you have a USB dongle with a SMS1XXX chipset.
|
||||||
|
|
||||||
Further documentation on this driver can be found on the WWW at
|
|
||||||
<http://www.siano-ms.com/>.
|
|
||||||
|
|
||||||
To compile this driver as a module, choose M here: the
|
To compile this driver as a module, choose M here: the
|
||||||
module will be called sms1xxx.
|
module will be called sms1xxx.
|
||||||
|
|
||||||
|
config DVB_SIANO_SMS1XXX_SMS_IDS
|
||||||
|
bool "Enable support for Siano Mobile Silicon default USB IDs"
|
||||||
|
depends on DVB_SIANO_SMS1XXX
|
||||||
|
default y
|
||||||
|
---help---
|
||||||
|
Choose Y here if you have a USB dongle with a SMS1XXX chipset
|
||||||
|
that uses Siano Mobile Silicon's default usb vid:pid.
|
||||||
|
|
||||||
|
Choose N here if you would prefer to use Siano's external driver.
|
||||||
|
|
||||||
|
Further documentation on this driver can be found on the WWW at
|
||||||
|
<http://www.siano-ms.com/>.
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "sms-cards.h"
|
#include "sms-cards.h"
|
||||||
|
|
||||||
struct usb_device_id smsusb_id_table[] = {
|
struct usb_device_id smsusb_id_table[] = {
|
||||||
|
#ifdef CONFIG_DVB_SIANO_SMS1XXX_SMS_IDS
|
||||||
{ USB_DEVICE(0x187f, 0x0010),
|
{ USB_DEVICE(0x187f, 0x0010),
|
||||||
.driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
|
.driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
|
||||||
{ USB_DEVICE(0x187f, 0x0100),
|
{ USB_DEVICE(0x187f, 0x0100),
|
||||||
@ -30,6 +31,7 @@ struct usb_device_id smsusb_id_table[] = {
|
|||||||
.driver_info = SMS1XXX_BOARD_SIANO_NOVA_B },
|
.driver_info = SMS1XXX_BOARD_SIANO_NOVA_B },
|
||||||
{ USB_DEVICE(0x187f, 0x0300),
|
{ USB_DEVICE(0x187f, 0x0300),
|
||||||
.driver_info = SMS1XXX_BOARD_SIANO_VEGA },
|
.driver_info = SMS1XXX_BOARD_SIANO_VEGA },
|
||||||
|
#endif
|
||||||
{ } /* Terminating entry */
|
{ } /* Terminating entry */
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(usb, smsusb_id_table);
|
MODULE_DEVICE_TABLE(usb, smsusb_id_table);
|
||||||
|
Loading…
Reference in New Issue
Block a user