forked from luck/tmp_suning_uos_patched
[media] gspca/pac7302.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 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
4f4d178535
commit
ae814c0845
@ -890,7 +890,7 @@ static int sd_chip_ident(struct gspca_dev *gspca_dev,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#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) /* interrput packet length */
|
int len) /* interrput packet length */
|
||||||
@ -936,7 +936,7 @@ static const struct sd_desc sd_desc = {
|
|||||||
.set_register = sd_dbg_s_register,
|
.set_register = sd_dbg_s_register,
|
||||||
.get_chip_ident = sd_chip_ident,
|
.get_chip_ident = sd_chip_ident,
|
||||||
#endif
|
#endif
|
||||||
#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
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user