mirror of https://gitee.com/openkylin/linux.git
[media] usb/gspca/sonixb.c: use IS_ENABLED() macro
replace: #if defined(CONFIG_INPUT) || \ defined(CONFIG_INPUT_MODULE) with: #if IS_ENABLED(CONFIG_INPUT) This change was made for: CONFIG_INPUT Also replaced: #if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE with: #if !IS_ENABLED(CONFIG_USB_SN9C102) Reported-by: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
8099affaa6
commit
f5b6de9cf6
|
@ -1400,7 +1400,7 @@ static int sd_querymenu(struct gspca_dev *gspca_dev,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
|
#if IS_ENABLED(CONFIG_INPUT)
|
||||||
static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
|
static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
|
||||||
u8 *data, /* interrupt packet data */
|
u8 *data, /* interrupt packet data */
|
||||||
int len) /* interrupt packet length */
|
int len) /* interrupt packet length */
|
||||||
|
@ -1430,7 +1430,7 @@ static const struct sd_desc sd_desc = {
|
||||||
.pkt_scan = sd_pkt_scan,
|
.pkt_scan = sd_pkt_scan,
|
||||||
.querymenu = sd_querymenu,
|
.querymenu = sd_querymenu,
|
||||||
.dq_callback = do_autogain,
|
.dq_callback = do_autogain,
|
||||||
#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
|
#if IS_ENABLED(CONFIG_INPUT)
|
||||||
.int_pkt_scan = sd_int_pkt_scan,
|
.int_pkt_scan = sd_int_pkt_scan,
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
@ -1448,7 +1448,7 @@ static const struct usb_device_id device_table[] = {
|
||||||
{USB_DEVICE(0x0c45, 0x600d), SB(PAS106, 101)},
|
{USB_DEVICE(0x0c45, 0x600d), SB(PAS106, 101)},
|
||||||
{USB_DEVICE(0x0c45, 0x6011), SB(OV6650, 101)},
|
{USB_DEVICE(0x0c45, 0x6011), SB(OV6650, 101)},
|
||||||
{USB_DEVICE(0x0c45, 0x6019), SB(OV7630, 101)},
|
{USB_DEVICE(0x0c45, 0x6019), SB(OV7630, 101)},
|
||||||
#if !defined CONFIG_USB_SN9C102 && !defined CONFIG_USB_SN9C102_MODULE
|
#if !IS_ENABLED(CONFIG_USB_SN9C102)
|
||||||
{USB_DEVICE(0x0c45, 0x6024), SB(TAS5130CXX, 102)},
|
{USB_DEVICE(0x0c45, 0x6024), SB(TAS5130CXX, 102)},
|
||||||
{USB_DEVICE(0x0c45, 0x6025), SB(TAS5130CXX, 102)},
|
{USB_DEVICE(0x0c45, 0x6025), SB(TAS5130CXX, 102)},
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue