Skip to content

Commit

Permalink
ARM: VR1000: Update mach-vr1000.c to use gpiolib API
Browse files Browse the repository at this point in the history
Change mach-vr1000.c to use gpiolib for gpio control.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
  • Loading branch information
Ben Dooks committed May 6, 2010
1 parent 408c8b8 commit 7614e1d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions arch/arm/mach-s3c2410/mach-vr1000.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,7 @@ static struct clk *vr1000_clocks[] __initdata = {

static void vr1000_power_off(void)
{
s3c2410_gpio_cfgpin(S3C2410_GPB(9), S3C2410_GPIO_OUTPUT);
s3c2410_gpio_setpin(S3C2410_GPB(9), 1);
gpio_direction_output(S3C2410_GPB(9), 1);
}

static void __init vr1000_map_io(void)
Expand Down Expand Up @@ -395,6 +394,8 @@ static void __init vr1000_init(void)

nor_simtec_init();
simtec_audio_add(NULL, true, NULL);

WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
}

MACHINE_START(VR1000, "Thorcom-VR1000")
Expand Down

0 comments on commit 7614e1d

Please sign in to comment.