summaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/rc-main.c
diff options
context:
space:
mode:
authorFengguang Wu <fengguang.wu@intel.com>2014-01-15 19:42:57 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-02-04 13:04:19 -0200
commit692a228e9ae419b3f51e94d1c60c1b18f37e3676 (patch)
treebfc068bb6cdb7fcdb15313d105616afdccd32472 /drivers/media/rc/rc-main.c
parent9e8ca38c5250d434874a13c7ba8b97b9126b746d (diff)
downloadop-kernel-dev-692a228e9ae419b3f51e94d1c60c1b18f37e3676.zip
op-kernel-dev-692a228e9ae419b3f51e94d1c60c1b18f37e3676.tar.gz
[media] rc-core: ir_core_dev_number can be static
Fix sparse warning: drivers/media/rc/rc-main.c:27:1: sparse: symbol 'ir_core_dev_number' was not declared. Should it be static? Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/rc/rc-main.c')
-rw-r--r--drivers/media/rc/rc-main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c
index 02e2f38..399eef4 100644
--- a/drivers/media/rc/rc-main.c
+++ b/drivers/media/rc/rc-main.c
@@ -24,7 +24,7 @@
/* Bitmap to store allocated device numbers from 0 to IRRCV_NUM_DEVICES - 1 */
#define IRRCV_NUM_DEVICES 256
-DECLARE_BITMAP(ir_core_dev_number, IRRCV_NUM_DEVICES);
+static DECLARE_BITMAP(ir_core_dev_number, IRRCV_NUM_DEVICES);
/* Sizes are in bytes, 256 bytes allows for 32 entries on x64 */
#define IR_TAB_MIN_SIZE 256
OpenPOWER on IntegriCloud