diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-21 14:46:18 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-23 00:06:35 -0400 |
commit | 54d80904b4c1f7aa1d569d07ca3e62fba0daf3a2 (patch) | |
tree | b746cf05f9e3d613d3dd84871363094fbcc2f44a | |
parent | 13828c61e9d3fd293c284fd24077f1f7d0946458 (diff) |
[media] hdpvr-video: Use the proper check for I2C support
As reported by Geert Uytterhoeven <geert@linux-m68k.org>:
drivers/media/usb/hdpvr/hdpvr-video.c: warning: "CONFIG_I2C_MODULE" is not defined [-Wundef]
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Thanks-to: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/usb/hdpvr/hdpvr-video.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/usb/hdpvr/hdpvr-video.c b/drivers/media/usb/hdpvr/hdpvr-video.c index da6b77912222..6a15405360dc 100644 --- a/drivers/media/usb/hdpvr/hdpvr-video.c +++ b/drivers/media/usb/hdpvr/hdpvr-video.c | |||
@@ -10,6 +10,7 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
13 | #include <linux/kconfig.h> | ||
13 | #include <linux/errno.h> | 14 | #include <linux/errno.h> |
14 | #include <linux/init.h> | 15 | #include <linux/init.h> |
15 | #include <linux/slab.h> | 16 | #include <linux/slab.h> |
@@ -1238,7 +1239,7 @@ static void hdpvr_device_release(struct video_device *vdev) | |||
1238 | v4l2_device_unregister(&dev->v4l2_dev); | 1239 | v4l2_device_unregister(&dev->v4l2_dev); |
1239 | 1240 | ||
1240 | /* deregister I2C adapter */ | 1241 | /* deregister I2C adapter */ |
1241 | #if defined(CONFIG_I2C) || (CONFIG_I2C_MODULE) | 1242 | #if IS_ENABLED(CONFIG_I2C) |
1242 | mutex_lock(&dev->i2c_mutex); | 1243 | mutex_lock(&dev->i2c_mutex); |
1243 | i2c_del_adapter(&dev->i2c_adapter); | 1244 | i2c_del_adapter(&dev->i2c_adapter); |
1244 | mutex_unlock(&dev->i2c_mutex); | 1245 | mutex_unlock(&dev->i2c_mutex); |