diff options
author | Paul Mundt <lethal@linux-sh.org> | 2011-03-29 16:06:21 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-03-29 16:06:21 +0900 |
commit | 1fcf0069f4715f6f811466db68a547a348b4d5a9 (patch) | |
tree | 00817872a00b162b493f65e5a90212ce54ba52ef /arch/sh/boards/mach-ecovec24/setup.c | |
parent | 53f358a81e10e798f44af896ffacaedd7ac0269b (diff) | |
parent | 247f99386100d1d1c369ba98120d2edebf5426fc (diff) | |
download | linux-3.10-1fcf0069f4715f6f811466db68a547a348b4d5a9.tar.gz linux-3.10-1fcf0069f4715f6f811466db68a547a348b4d5a9.tar.bz2 linux-3.10-1fcf0069f4715f6f811466db68a547a348b4d5a9.zip |
Merge branch 'common/fbdev' of master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6
Diffstat (limited to 'arch/sh/boards/mach-ecovec24/setup.c')
-rw-r--r-- | arch/sh/boards/mach-ecovec24/setup.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index e44480ce2ea..c68e2863bf8 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c @@ -263,6 +263,18 @@ const static struct fb_videomode ecovec_dvi_modes[] = { }, }; +static int ecovec24_set_brightness(void *board_data, int brightness) +{ + gpio_set_value(GPIO_PTR1, brightness); + + return 0; +} + +static int ecovec24_get_brightness(void *board_data) +{ + return gpio_get_value(GPIO_PTR1); +} + static struct sh_mobile_lcdc_info lcdc_info = { .ch[0] = { .interface_type = RGB18, @@ -273,6 +285,12 @@ static struct sh_mobile_lcdc_info lcdc_info = { .height = 91, }, .board_cfg = { + .set_brightness = ecovec24_set_brightness, + .get_brightness = ecovec24_get_brightness, + }, + .bl_info = { + .name = "sh_mobile_lcdc_bl", + .max_brightness = 1, }, } }; |