diff options
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/cx18/cx18-io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx18/cx18-io.h b/drivers/media/video/cx18/cx18-io.h index 197d4fbd9f95..287a5e8bf67b 100644 --- a/drivers/media/video/cx18/cx18-io.h +++ b/drivers/media/video/cx18/cx18-io.h | |||
@@ -39,7 +39,7 @@ static inline void cx18_io_delay(struct cx18 *cx) | |||
39 | 39 | ||
40 | /* Statistics gathering */ | 40 | /* Statistics gathering */ |
41 | static inline | 41 | static inline |
42 | void cx18_log_write_retries(struct cx18 *cx, int i, const void *addr) | 42 | void cx18_log_write_retries(struct cx18 *cx, int i, const void __iomem *addr) |
43 | { | 43 | { |
44 | if (i > CX18_MAX_MMIO_RETRIES) | 44 | if (i > CX18_MAX_MMIO_RETRIES) |
45 | i = CX18_MAX_MMIO_RETRIES; | 45 | i = CX18_MAX_MMIO_RETRIES; |
@@ -48,7 +48,7 @@ void cx18_log_write_retries(struct cx18 *cx, int i, const void *addr) | |||
48 | } | 48 | } |
49 | 49 | ||
50 | static inline | 50 | static inline |
51 | void cx18_log_read_retries(struct cx18 *cx, int i, const void *addr) | 51 | void cx18_log_read_retries(struct cx18 *cx, int i, const void __iomem *addr) |
52 | { | 52 | { |
53 | if (i > CX18_MAX_MMIO_RETRIES) | 53 | if (i > CX18_MAX_MMIO_RETRIES) |
54 | i = CX18_MAX_MMIO_RETRIES; | 54 | i = CX18_MAX_MMIO_RETRIES; |