diff options
author | Damian Hobson-Garcia <dhobsong@igel.co.jp> | 2011-06-22 05:49:50 (GMT) |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-08-19 06:11:16 (GMT) |
commit | 0aa492be88b10b7b7621101df5fbf79f9236aecb (patch) | |
tree | 3376b14844a7efd37c52ecb69143524ef0f02a8d /drivers/video/sh_mobile_meram.c | |
parent | ec19b9e0fa808d82ad996d73358a5b06a565b78b (diff) | |
download | linux-0aa492be88b10b7b7621101df5fbf79f9236aecb.tar.xz |
fbdev: sh_mobile_meram: Move private data from .h to .c
There is no reason for sh_mobile_meram_priv to be in the .h file
since it should be private to sh_mobile_meram.c
Signed-off-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>
Diffstat (limited to 'drivers/video/sh_mobile_meram.c')
-rw-r--r-- | drivers/video/sh_mobile_meram.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/video/sh_mobile_meram.c b/drivers/video/sh_mobile_meram.c index 34efd8a..cfa1a78 100644 --- a/drivers/video/sh_mobile_meram.c +++ b/drivers/video/sh_mobile_meram.c @@ -37,6 +37,14 @@ #define MEQSEL1 0x40 #define MEQSEL2 0x44 +struct sh_mobile_meram_priv { + void __iomem *base; + struct mutex lock; + unsigned long used_icb; + int used_meram_cache_regions; + unsigned long used_meram_cache[SH_MOBILE_MERAM_ICB_NUM]; +}; + /* settings */ #define MERAM_SEC_LINE 15 #define MERAM_LINE_WIDTH 2048 |