diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-08-01 19:30:30 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-08-01 19:55:25 +0200 |
commit | 9f1595245574a2dc1fb375df665e4d9fe336a9c4 (patch) | |
tree | 6d6ab86d86ea0be25d9a44e21f02d60ba14195bc /drivers/media/pci/cx23885/cx23885-video.c | |
parent | [media] cx23885[v4]: Fix interrupt storm when enabling IR receiver (diff) | |
download | linux-9f1595245574a2dc1fb375df665e4d9fe336a9c4.tar.xz linux-9f1595245574a2dc1fb375df665e4d9fe336a9c4.zip |
[media] cx23885-video: fix two warnings
drivers/media/pci/cx23885/cx23885-video.c:420:5: warning: no previous prototype for 'cx23885_flatiron_write' [-Wmissing-prototypes]
int cx23885_flatiron_write(struct cx23885_dev *dev, u8 reg, u8 data)
^
drivers/media/pci/cx23885/cx23885-video.c:431:4: warning: no previous prototype for 'cx23885_flatiron_read' [-Wmissing-prototypes]
u8 cx23885_flatiron_read(struct cx23885_dev *dev, u8 reg)
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/pci/cx23885/cx23885-video.c')
-rw-r--r-- | drivers/media/pci/cx23885/cx23885-video.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/pci/cx23885/cx23885-video.c b/drivers/media/pci/cx23885/cx23885-video.c index f4e7cefebc8f..161686832b20 100644 --- a/drivers/media/pci/cx23885/cx23885-video.c +++ b/drivers/media/pci/cx23885/cx23885-video.c @@ -32,6 +32,7 @@ #include <asm/div64.h> #include "cx23885.h" +#include "cx23885-video.h" #include <media/v4l2-common.h> #include <media/v4l2-ioctl.h> #include "cx23885-ioctl.h" |