diff options
author | Pawel Osciak <p.osciak@samsung.com> | 2010-08-10 21:02:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:10 -0400 |
commit | eb42b0441bc7fd29066bb7c38ebabe3d0e3ff202 (patch) | |
tree | 299fa255662728de4fe2da89f90fcc836d035824 /arch/arm/mach-s5pv210 | |
parent | 4e591ac620269b3f5fb000d75444bbb397576315 (diff) |
s3c-fb: add device name initialization
Add framebuffer device name initialization calls for S3C2443, S3C64xx and
S5P machines.
Signed-off-by: Pawel Osciak <p.osciak@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Cc: InKi Dae <inki.dae@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm/mach-s5pv210')
-rw-r--r-- | arch/arm/mach-s5pv210/cpu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pv210/cpu.c b/arch/arm/mach-s5pv210/cpu.c index 411a4a9cbfc7..ffd8b17c363a 100644 --- a/arch/arm/mach-s5pv210/cpu.c +++ b/arch/arm/mach-s5pv210/cpu.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <plat/cpu.h> | 31 | #include <plat/cpu.h> |
32 | #include <plat/devs.h> | 32 | #include <plat/devs.h> |
33 | #include <plat/clock.h> | 33 | #include <plat/clock.h> |
34 | #include <plat/fb-core.h> | ||
34 | #include <plat/s5pv210.h> | 35 | #include <plat/s5pv210.h> |
35 | #include <plat/iic-core.h> | 36 | #include <plat/iic-core.h> |
36 | #include <plat/sdhci.h> | 37 | #include <plat/sdhci.h> |
@@ -91,6 +92,8 @@ void __init s5pv210_map_io(void) | |||
91 | s3c_i2c0_setname("s3c2440-i2c"); | 92 | s3c_i2c0_setname("s3c2440-i2c"); |
92 | s3c_i2c1_setname("s3c2440-i2c"); | 93 | s3c_i2c1_setname("s3c2440-i2c"); |
93 | s3c_i2c2_setname("s3c2440-i2c"); | 94 | s3c_i2c2_setname("s3c2440-i2c"); |
95 | |||
96 | s3c_fb_setname("s5pv210-fb"); | ||
94 | } | 97 | } |
95 | 98 | ||
96 | void __init s5pv210_init_clocks(int xtal) | 99 | void __init s5pv210_init_clocks(int xtal) |