]> git.baikalelectronics.ru Git - kernel.git/commit
[media] usb/gspca/cpia1.c: use IS_ENABLED() macro
authorPeter Senna Tschudin <peter.senna@gmail.com>
Thu, 24 Jan 2013 22:28:58 +0000 (19:28 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 5 Feb 2013 16:53:14 +0000 (14:53 -0200)
commitdb1091cd12590d97dfd43152f4c829d4d3c328ed
tree910c353b74c638088c6d03ad4e2b958ef41331b4
parentbe43dc213a3a02037e07359bb38778e86a3b5c56
[media] usb/gspca/cpia1.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>
drivers/media/usb/gspca/cpia1.c