diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-07-13 10:13:47 (GMT) |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-08-19 06:22:45 (GMT) |
commit | 8a20974f0370fe1b924704399e7ba327d894ef72 (patch) | |
tree | f06a04d8807beed632131f0437e050ae3b052ec2 /drivers/video/sh_mobile_meram.c | |
parent | d86d29df57adf9258f56939e59cdd70932845885 (diff) | |
download | linux-8a20974f0370fe1b924704399e7ba327d894ef72.tar.xz |
fbdev: sh_mobile_meram: Remove unneeded sh_mobile_meram.h
The drivers/video/sh_mobile_meram.h header contains unused definitions
and declarations. Move the only used macro to sh_mobile_meram.c, and
remove the header.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers/video/sh_mobile_meram.c')
-rw-r--r-- | drivers/video/sh_mobile_meram.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/sh_mobile_meram.c b/drivers/video/sh_mobile_meram.c index 7ba6dce..f632970 100644 --- a/drivers/video/sh_mobile_meram.c +++ b/drivers/video/sh_mobile_meram.c @@ -16,8 +16,7 @@ #include <linux/io.h> #include <linux/slab.h> #include <linux/platform_device.h> - -#include "sh_mobile_meram.h" +#include <video/sh_mobile_meram.h> /* meram registers */ #define MEVCR1 0x4 @@ -82,6 +81,8 @@ ((yszm1) << MExxBSIZE_YSZM1_SHIFT) | \ ((xszm1) << MExxBSIZE_XSZM1_SHIFT)) +#define SH_MOBILE_MERAM_ICB_NUM 32 + static unsigned long common_regs[] = { MEVCR1, MEQSEL1, |