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:
2d622e9
)
[media] usb/gspca/se401.c: use IS_ENABLED() macro
author
Peter Senna Tschudin
<
[email protected]
>
Thu, 24 Jan 2013 22:29:05 +0000
(19:29 -0300)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Tue, 5 Feb 2013 16:54:10 +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/se401.c
patch
|
blob
|
history
diff --git
a/drivers/media/usb/gspca/se401.c
b/drivers/media/usb/gspca/se401.c
index a33cb78a839cb4ad0d89082171bfe52ae2bc7717..5f729b8aa2bd64bee74af9c02b1954a12c4bb304 100644
(file)
--- a/
drivers/media/usb/gspca/se401.c
+++ b/
drivers/media/usb/gspca/se401.c
@@
-594,7
+594,7
@@
static void sd_pkt_scan(struct gspca_dev *gspca_dev, u8 *data, int len)
sd_pkt_scan_janggu(gspca_dev, data, len);
}
-#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, int len)
{
struct sd *sd = (struct sd *)gspca_dev;
@@
-688,7
+688,7
@@
static const struct sd_desc sd_desc = {
.stopN = sd_stopN,
.dq_callback = sd_dq_callback,
.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
};