From 78710465ced127c59325369d0cc8860649644ff1 Mon Sep 17 00:00:00 2001 From: Pawel Osciak Date: Tue, 10 Aug 2010 18:02:37 -0700 Subject: [PATCH] --- yaml --- r: 208495 b: refs/heads/master c: eb42b0441bc7fd29066bb7c38ebabe3d0e3ff202 h: refs/heads/master i: 208493: a948c878635e86a797d8644e0bd01c4578dd387c 208491: e871fbb0924481af496c592dc6213fde6b510b19 208487: 0420d207e8e348d88261ab8b2ea715ca6ed842bf 208479: 3b053a32c5b869fe4c22768b12ee91eb9efdd63f v: v3 --- [refs] | 2 +- trunk/arch/arm/mach-s3c2416/s3c2416.c | 3 +- trunk/arch/arm/mach-s3c2443/s3c2443.c | 2 ++ trunk/arch/arm/mach-s5pc100/cpu.c | 2 ++ trunk/arch/arm/mach-s5pv210/cpu.c | 3 ++ .../arm/plat-samsung/include/plat/fb-core.h | 29 +++++++++++++++++++ 6 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 trunk/arch/arm/plat-samsung/include/plat/fb-core.h diff --git a/[refs] b/[refs] index 7e436b266212..ddadd26da228 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 4e591ac620269b3f5fb000d75444bbb397576315 +refs/heads/master: eb42b0441bc7fd29066bb7c38ebabe3d0e3ff202 diff --git a/trunk/arch/arm/mach-s3c2416/s3c2416.c b/trunk/arch/arm/mach-s3c2416/s3c2416.c index 35dabccd0ac2..bc30245e133b 100644 --- a/trunk/arch/arm/mach-s3c2416/s3c2416.c +++ b/trunk/arch/arm/mach-s3c2416/s3c2416.c @@ -55,6 +55,7 @@ #include #include +#include static struct map_desc s3c2416_iodesc[] __initdata = { IODESC_ENT(WATCHDOG), @@ -90,7 +91,7 @@ int __init s3c2416_init(void) s3c_i2c0_setname("s3c2440-i2c"); s3c_i2c1_setname("s3c2440-i2c"); - s3c_device_fb.name = "s3c2443-fb"; + s3c_fb_setname("s3c2443-fb"); return sysdev_register(&s3c2416_sysdev); } diff --git a/trunk/arch/arm/mach-s3c2443/s3c2443.c b/trunk/arch/arm/mach-s3c2443/s3c2443.c index ce2ec3298930..839b6b2ced74 100644 --- a/trunk/arch/arm/mach-s3c2443/s3c2443.c +++ b/trunk/arch/arm/mach-s3c2443/s3c2443.c @@ -35,6 +35,7 @@ #include #include #include +#include static struct map_desc s3c2443_iodesc[] __initdata = { IODESC_ENT(WATCHDOG), @@ -62,6 +63,7 @@ int __init s3c2443_init(void) s3c24xx_reset_hook = s3c2443_hard_reset; s3c_device_nand.name = "s3c2412-nand"; + s3c_fb_setname("s3c2443-fb"); /* change WDT IRQ number */ s3c_device_wdt.resource[1].start = IRQ_S3C2443_WDT; diff --git a/trunk/arch/arm/mach-s5pc100/cpu.c b/trunk/arch/arm/mach-s5pc100/cpu.c index 7b5bdbc9a5df..ecab982a38b9 100644 --- a/trunk/arch/arm/mach-s5pc100/cpu.c +++ b/trunk/arch/arm/mach-s5pc100/cpu.c @@ -41,6 +41,7 @@ #include #include #include +#include #include @@ -92,6 +93,7 @@ void __init s5pc100_map_io(void) s3c_i2c1_setname("s3c2440-i2c"); s3c_onenand_setname("s5pc100-onenand"); + s3c_fb_setname("s5pc100-fb"); } void __init s5pc100_init_clocks(int xtal) diff --git a/trunk/arch/arm/mach-s5pv210/cpu.c b/trunk/arch/arm/mach-s5pv210/cpu.c index 411a4a9cbfc7..ffd8b17c363a 100644 --- a/trunk/arch/arm/mach-s5pv210/cpu.c +++ b/trunk/arch/arm/mach-s5pv210/cpu.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -91,6 +92,8 @@ void __init s5pv210_map_io(void) s3c_i2c0_setname("s3c2440-i2c"); s3c_i2c1_setname("s3c2440-i2c"); s3c_i2c2_setname("s3c2440-i2c"); + + s3c_fb_setname("s5pv210-fb"); } void __init s5pv210_init_clocks(int xtal) diff --git a/trunk/arch/arm/plat-samsung/include/plat/fb-core.h b/trunk/arch/arm/plat-samsung/include/plat/fb-core.h new file mode 100644 index 000000000000..bca383efcf6d --- /dev/null +++ b/trunk/arch/arm/plat-samsung/include/plat/fb-core.h @@ -0,0 +1,29 @@ +/* + * arch/arm/plat-samsung/include/plat/fb-core.h + * + * Copyright 2010 Samsung Electronics Co., Ltd. + * Pawel Osciak + * + * Samsung framebuffer driver core functions + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ +#ifndef __ASM_PLAT_FB_CORE_H +#define __ASM_PLAT_FB_CORE_H __FILE__ + +/* + * These functions are only for use with the core support code, such as + * the CPU-specific initialization code. + */ + +/* Re-define device name depending on support. */ +static inline void s3c_fb_setname(char *name) +{ +#ifdef CONFIG_S3C_DEV_FB + s3c_device_fb.name = name; +#endif +} + +#endif /* __ASM_PLAT_FB_CORE_H */