[ARM] 3447/1: [S3C2410] SMDK - default LEDs to off
Patch from Ben Dooks Set default state of LEDs to off Fixes context of Patch #3442/1 Signed-off-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
26f91fd54d
commit
66ce229fe0
1 changed files with 4 additions and 4 deletions
|
@ -42,10 +42,10 @@ void __init smdk_machine_init(void)
|
|||
s3c2410_gpio_cfgpin(S3C2410_GPF6, S3C2410_GPF6_OUTP);
|
||||
s3c2410_gpio_cfgpin(S3C2410_GPF7, S3C2410_GPF7_OUTP);
|
||||
|
||||
s3c2410_gpio_setpin(S3C2410_GPF4, 0);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF5, 0);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF6, 0);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF7, 0);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF4, 1);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF5, 1);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF6, 1);
|
||||
s3c2410_gpio_setpin(S3C2410_GPF7, 1);
|
||||
|
||||
s3c2410_pm_init();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue