diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-13 15:54:59 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-13 16:28:23 -0200 |
commit | eab924d0e2bdfd53c902162b0b499b8464c1fb4a (patch) | |
tree | 6516342dd721a043f38f9246a5ab09f153135170 /drivers/media | |
parent | 986058e1ef342363a2d77233bbc07bb0a0264f6b (diff) | |
download | linux-eab924d0e2bdfd53c902162b0b499b8464c1fb4a.tar.gz linux-eab924d0e2bdfd53c902162b0b499b8464c1fb4a.tar.bz2 linux-eab924d0e2bdfd53c902162b0b499b8464c1fb4a.zip |
[media] tea575x: Fix build with ARCH=c6x
In file included from /devel/v4l/temp/include/asm-generic/page.h:23:0,
from /devel/v4l/temp/arch/c6x/include/asm/page.h:9,
from /devel/v4l/temp/include/asm-generic/io.h:14,
from arch/c6x/include/generated/asm/io.h:1,
from /devel/v4l/temp/drivers/media/radio/tea575x.c:23:
/devel/v4l/temp/arch/c6x/include/asm/setup.h:17:27: error: unknown type name ‘phys_addr_t’
extern int c6x_add_memory(phys_addr_t start, unsigned long size);
It seems that, on such arch, the includes from asm/ should be
after the ones from linux/.
The proper fix would be to patch the arch files, but, as
this fix is trivial, apply it. Also, we generally put the
asm includes after the linux ones, anyway.
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/radio/tea575x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/tea575x.c b/drivers/media/radio/tea575x.c index cef06981b7c9..7c14060a40b8 100644 --- a/drivers/media/radio/tea575x.c +++ b/drivers/media/radio/tea575x.c @@ -20,12 +20,12 @@ * */ -#include <asm/io.h> #include <linux/delay.h> #include <linux/module.h> #include <linux/init.h> #include <linux/slab.h> #include <linux/sched.h> +#include <asm/io.h> #include <media/v4l2-device.h> #include <media/v4l2-dev.h> #include <media/v4l2-fh.h> |