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:
c4ea799
)
[media] usb/gspca/pac207.c: use IS_ENABLED() macro
author
Peter Senna Tschudin
<
[email protected]
>
Thu, 24 Jan 2013 22:29:02 +0000
(19:29 -0300)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Tue, 5 Feb 2013 16:53:58 +0000
(14:53 -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/pac207.c
patch
|
blob
|
history
diff --git
a/drivers/media/usb/gspca/pac207.c
b/drivers/media/usb/gspca/pac207.c
index 1f253dfebe4709da0de86fe6517eca5191e5eee2..3b75097dd34e6c6eacb84ccb5154bbfb4e62d4a3 100644
(file)
--- a/
drivers/media/usb/gspca/pac207.c
+++ b/
drivers/media/usb/gspca/pac207.c
@@
-413,7
+413,7
@@
static void sd_pkt_scan(struct gspca_dev *gspca_dev,
gspca_frame_add(gspca_dev, INTER_PACKET, 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, /* interrupt packet data */
int len) /* interrput packet length */
@@
-442,7
+442,7
@@
static const struct sd_desc sd_desc = {
.stopN = sd_stopN,
.dq_callback = pac207_do_auto_gain,
.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
};