Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208495
b: refs/heads/master
c: eb42b04
h: refs/heads/master
i:
  208493: a948c87
  208491: e871fbb
  208487: 0420d20
  208479: 3b053a3
v: v3
  • Loading branch information
Pawel Osciak authored and Linus Torvalds committed Aug 11, 2010
1 parent 73afdf1 commit 7871046
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e591ac620269b3f5fb000d75444bbb397576315
refs/heads/master: eb42b0441bc7fd29066bb7c38ebabe3d0e3ff202
3 changes: 2 additions & 1 deletion trunk/arch/arm/mach-s3c2416/s3c2416.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
#include <plat/cpu.h>

#include <plat/iic-core.h>
#include <plat/fb-core.h>

static struct map_desc s3c2416_iodesc[] __initdata = {
IODESC_ENT(WATCHDOG),
Expand Down Expand Up @@ -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);
}
Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/arm/mach-s3c2443/s3c2443.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include <plat/s3c2443.h>
#include <plat/devs.h>
#include <plat/cpu.h>
#include <plat/fb-core.h>

static struct map_desc s3c2443_iodesc[] __initdata = {
IODESC_ENT(WATCHDOG),
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/arm/mach-s5pc100/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include <plat/iic-core.h>
#include <plat/sdhci.h>
#include <plat/onenand-core.h>
#include <plat/fb-core.h>

#include <plat/s5pc100.h>

Expand Down Expand Up @@ -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)
Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/arm/mach-s5pv210/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <plat/cpu.h>
#include <plat/devs.h>
#include <plat/clock.h>
#include <plat/fb-core.h>
#include <plat/s5pv210.h>
#include <plat/iic-core.h>
#include <plat/sdhci.h>
Expand Down Expand Up @@ -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)
Expand Down
29 changes: 29 additions & 0 deletions trunk/arch/arm/plat-samsung/include/plat/fb-core.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* arch/arm/plat-samsung/include/plat/fb-core.h
*
* Copyright 2010 Samsung Electronics Co., Ltd.
* Pawel Osciak <p.osciak@samsung.com>
*
* 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 */

0 comments on commit 7871046

Please sign in to comment.