Skip to content

Commit

Permalink
ARM: shmobile: armadillo800eva: Use gpio_set_value() to set GPIO value
Browse files Browse the repository at this point in the history
The GPIO is already configured as an output, there's no reason to use
gpio_direction_output() just to set the output value. Use
gpio_set_value() instead.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
  • Loading branch information
Laurent Pinchart authored and Simon Horman committed Jan 28, 2013
1 parent 0f69e70 commit 2173441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-shmobile/board-armadillo800eva.c
Original file line number Diff line number Diff line change
Expand Up @@ -708,9 +708,9 @@ static int mt9t111_power(struct device *dev, int mode)
/* video1 (= CON1 camera) expect 24MHz */
clk_set_rate(mclk, clk_round_rate(mclk, 24000000));
clk_enable(mclk);
gpio_direction_output(GPIO_PORT158, 1);
gpio_set_value(GPIO_PORT158, 1);
} else {
gpio_direction_output(GPIO_PORT158, 0);
gpio_set_value(GPIO_PORT158, 0);
clk_disable(mclk);
}

Expand Down

0 comments on commit 2173441

Please sign in to comment.