diff options
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r-- | drivers/media/video/cx88/cx88-core.c | 2 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88-video.c | 2 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/cx88/cx88-core.c b/drivers/media/video/cx88/cx88-core.c index 87212759149e..8f1c27fdae6a 100644 --- a/drivers/media/video/cx88/cx88-core.c +++ b/drivers/media/video/cx88/cx88-core.c | |||
@@ -431,7 +431,7 @@ int cx88_sram_channel_setup(struct cx88_core *core, | |||
431 | /* ------------------------------------------------------------------ */ | 431 | /* ------------------------------------------------------------------ */ |
432 | /* debug helper code */ | 432 | /* debug helper code */ |
433 | 433 | ||
434 | int cx88_risc_decode(u32 risc) | 434 | static int cx88_risc_decode(u32 risc) |
435 | { | 435 | { |
436 | static char *instr[16] = { | 436 | static char *instr[16] = { |
437 | [ RISC_SYNC >> 28 ] = "sync", | 437 | [ RISC_SYNC >> 28 ] = "sync", |
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index 67630f61c470..a29c12754ef6 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c | |||
@@ -787,7 +787,7 @@ static int video_open(struct inode *inode, struct file *file) | |||
787 | } | 787 | } |
788 | 788 | ||
789 | static ssize_t | 789 | static ssize_t |
790 | video_read(struct file *file, char *data, size_t count, loff_t *ppos) | 790 | video_read(struct file *file, char __user *data, size_t count, loff_t *ppos) |
791 | { | 791 | { |
792 | struct cx8800_fh *fh = file->private_data; | 792 | struct cx8800_fh *fh = file->private_data; |
793 | 793 | ||
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index 3d885b4025d8..bd27b56ace26 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h | |||
@@ -204,8 +204,8 @@ struct cx88_board { | |||
204 | int tda9887_conf; | 204 | int tda9887_conf; |
205 | struct cx88_input input[MAX_CX88_INPUT]; | 205 | struct cx88_input input[MAX_CX88_INPUT]; |
206 | struct cx88_input radio; | 206 | struct cx88_input radio; |
207 | int blackbird:1; | 207 | unsigned int blackbird:1; |
208 | int dvb:1; | 208 | unsigned int dvb:1; |
209 | }; | 209 | }; |
210 | 210 | ||
211 | struct cx88_subid { | 211 | struct cx88_subid { |