diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2015-11-17 07:33:25 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-11-19 14:54:21 +0100 |
commit | 439be34800f8588503059434ce873ff84fcb00c3 (patch) | |
tree | 3ba0076d00f09df4222a6bb2f9b58155f6ada103 /drivers/media/pci/cx23885/cx23885-input.c | |
parent | smsir.h: remove a now duplicated definition (IR_DEFAULT_TIMEOUT) (diff) | |
download | linux-439be34800f8588503059434ce873ff84fcb00c3.tar.xz linux-439be34800f8588503059434ce873ff84fcb00c3.zip |
[media] media: cx23885: fix type of allowed_protos
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>
Diffstat (limited to 'drivers/media/pci/cx23885/cx23885-input.c')
-rw-r--r-- | drivers/media/pci/cx23885/cx23885-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx23885/cx23885-input.c b/drivers/media/pci/cx23885/cx23885-input.c index 088799c3b49b..64328d08ac2f 100644 --- a/drivers/media/pci/cx23885/cx23885-input.c +++ b/drivers/media/pci/cx23885/cx23885-input.c @@ -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; |