projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fd3083
)
[media] usb/gspca/sn9c20x.c: use IS_ENABLED() macro
author
Peter Senna Tschudin
<
[email protected]
>
Thu, 24 Jan 2013 22:29:06 +0000
(19:29 -0300)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Tue, 5 Feb 2013 16:54:22 +0000
(14:54 -0200)
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 <
[email protected]
>
Signed-off-by: Peter Senna Tschudin <
[email protected]
>
Signed-off-by: Hans de Goede <
[email protected]
>
Signed-off-by: Mauro Carvalho Chehab <
[email protected]
>
drivers/media/usb/gspca/sn9c20x.c
patch
|
blob
|
history
diff --git
a/drivers/media/usb/gspca/sn9c20x.c
b/drivers/media/usb/gspca/sn9c20x.c
index 41f769fe340c9f1a6a9f01ef7a84e4e9feb323b1..4ec544f4a845fdc034bc4e83307c98f671704811 100644
(file)
--- a/
drivers/media/usb/gspca/sn9c20x.c
+++ b/
drivers/media/usb/gspca/sn9c20x.c
@@
-2205,7
+2205,7
@@
static void qual_upd(struct work_struct *work)
mutex_unlock(&gspca_dev->usb_lock);
}
-#if
defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE
)
+#if
IS_ENABLED(CONFIG_INPUT
)
static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
u8 *data, /* interrupt packet */
int len) /* interrupt packet length */
@@
-2349,7
+2349,7
@@
static const struct sd_desc sd_desc = {
.stopN = sd_stopN,
.stop0 = sd_stop0,
.pkt_scan = sd_pkt_scan,
-#if
defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE
)
+#if
IS_ENABLED(CONFIG_INPUT
)
.int_pkt_scan = sd_int_pkt_scan,
#endif
.dq_callback = sd_dqcallback,