[media] media: cx23885: fix type of allowed_protos
authorHeiner Kallweit <hkallweit1@gmail.com>
Tue, 17 Nov 2015 06:33:25 +0000 (04:33 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 19 Nov 2015 13:54:21 +0000 (11:54 -0200)
Protocol lists are represented as 64-bit bitmaps,
therefore use u64 instead of unsigned long.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/pci/cx23885/cx23885-input.c

index 088799c3b49bd2c019023f09d11ed50b13506aca..64328d08ac2fc12410956cc579bc7d3f8cd1583f 100644 (file)
@@ -268,7 +268,7 @@ int cx23885_input_init(struct cx23885_dev *dev)
        struct rc_dev *rc;
        char *rc_map;
        enum rc_driver_type driver_type;
-       unsigned long allowed_protos;
+       u64 allowed_protos;
 
        int ret;
 
This page took 0.027185 seconds and 5 git commands to generate.