projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff08657
)
V4L/DVB (9298): cx18: Add __iomem address space qualifier to cx18_log_*_retries(...
author
Andy Walls
<awalls@radix.net>
Sat, 18 Oct 2008 12:00:26 +0000
(09:00 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Tue, 21 Oct 2008 16:20:43 +0000
(14:20 -0200)
cx18: Add __iomem address space qualifier to cx18_log_*_retries() addr
argument to clean up sparse build warnings.
Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/cx18/cx18-io.h
patch
|
blob
|
blame
|
history
diff --git
a/drivers/media/video/cx18/cx18-io.h
b/drivers/media/video/cx18/cx18-io.h
index 197d4fbd9f9544a8bf1d530adc8a4ee57dbf90cc..287a5e8bf67b8a988c88b4bb0cdb7315c2d3b613 100644
(file)
--- 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)
/* Statistics gathering */
static inline
-void cx18_log_write_retries(struct cx18 *cx, int i, const void *addr)
+void cx18_log_write_retries(struct cx18 *cx, int i, const void
__iomem
*addr)
{
if (i > CX18_MAX_MMIO_RETRIES)
i = CX18_MAX_MMIO_RETRIES;
@@
-48,7
+48,7
@@
void cx18_log_write_retries(struct cx18 *cx, int i, const void *addr)
}
static inline
-void cx18_log_read_retries(struct cx18 *cx, int i, const void *addr)
+void cx18_log_read_retries(struct cx18 *cx, int i, const void
__iomem
*addr)
{
if (i > CX18_MAX_MMIO_RETRIES)
i = CX18_MAX_MMIO_RETRIES;