Commit 9fa7bc01 authored by Krzysztof Helt's avatar Krzysztof Helt Committed by Linus Torvalds

s3c2410fb: source code improvements

This patch:
- moves more display mode preparations to s3c2410fb_check_var()
- reduces number of fields in s3c2410fb_info
- removes redundant values setting in s3c2410fb_probe()
- removes static mach_info pointer
- releases fb_info structure in s3c2410fb_remove()
- changes s3c2410fb_init to __init from __devinit
- fixes few typos in comments and removes unused includes
Signed-off-by: default avatarKrzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: default avatarAntonino Daplas <adaplas@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 84902b7a
This diff is collapsed.
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* *
* 2004-09-07: Arnaud Patard <arnaud.patard@rtp-net.org> * 2004-09-07: Arnaud Patard <arnaud.patard@rtp-net.org>
* - Renamed from h1940fb.h to s3c2410fb.h * - Renamed from h1940fb.h to s3c2410fb.h
* - Chenged h1940 to s3c2410 * - Changed h1940 to s3c2410
* *
* 2004-07-15: Arnaud Patard <arnaud.patard@rtp-net.org> * 2004-07-15: Arnaud Patard <arnaud.patard@rtp-net.org>
* - First version * - First version
...@@ -32,20 +32,8 @@ struct s3c2410fb_info { ...@@ -32,20 +32,8 @@ struct s3c2410fb_info {
struct resource *mem; struct resource *mem;
void __iomem *io; void __iomem *io;
struct s3c2410fb_mach_info *mach_info;
unsigned current_display;
/* raw memory addresses */
dma_addr_t map_dma; /* physical */
u_char * map_cpu; /* virtual */
u_int map_size;
struct s3c2410fb_hw regs; struct s3c2410fb_hw regs;
/* addresses of pieces placed in raw buffer */
u_char * screen_cpu; /* virtual address of buffer */
dma_addr_t screen_dma; /* physical address of buffer */
unsigned int palette_ready; unsigned int palette_ready;
/* keep these registers in case we need to re-write palette */ /* keep these registers in case we need to re-write palette */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment