diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 15:33:45 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 15:33:45 -0800 | 
| commit | 6c5096e5538b455bc3bea2b02588c380f070d8c6 (patch) | |
| tree | a2d08974a0c6a6fd19dff90bd3ab1827c23a5764 /arch/arm/mach-shmobile/board-ag5evm.c | |
| parent | bab588fcfb6335c767d811a8955979f5440328e0 (diff) | |
| parent | f628e3d92465303792d52c98fb0c95bef558f936 (diff) | |
| download | olio-linux-3.10-6c5096e5538b455bc3bea2b02588c380f070d8c6.tar.xz olio-linux-3.10-6c5096e5538b455bc3bea2b02588c380f070d8c6.zip  | |
Merge tag 'boards' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC board specific changes from Arnd Bergmann:
 "These updates are all for board specific code, including
   - defconfig updates for shmobile, davinci, bcm2835, imx, omap and
     tegra
   - SD/MMC and I2C support on bcm2835 (Raspberry PI)
   - minor updates for PXA
   - shmobile updates to GPIO usage in board files
   - More things in OMAP board files are moved over to device tree
     probing
   - Better support for audio devices on some OMAP platforms"
* tag 'boards' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (55 commits)
  ARM: imx_v4_v5_defconfig: Add VPU support
  ARM: imx: configs: enable netfilter support
  ARM: OMAP2+: Fix twl section warnings related to omap_twl4030_audio_init
  ARM: OMAP2+: omap2plus_defconfig: enable omap1 rtc
  RX-51: Register twl4030-madc device
  RX-51: Add leds lp5523 names from Maemo 5 2.6.28 kernel
  ARM: OMAP2+: AM33XX: omap2plus_defconfig: Add support for few drivers
  ARM: OMAP1: nokia770: enable CBUS/Retu
  ARM: OMAP2+: omap2plus_defconfig: enable CMA allocator
  ARM: OMAP2+: omap2plus_defconfig: enable TFP410 chip support
  ARM: OMAP3: igep0020: simplify GPIO LEDs dependencies
  ARM: OMAP2+: craneboard: support the TPS65910 PMU
  ARM: OMAP2+: craneboard: support NAND device
  ARM: OMAP3: cm-t3517: add MMC support
  ARM: OMAP2+: Remove apollon board support
  ARM: shmobile: armadillo800eva: set clock rates before timer init
  ARM: tegra: defconfig updates
  ARM: shmobile: mackerel: Use gpio_request_one()
  ARM: shmobile: kzm9g: Use gpio_request_one()
  ARM: shmobile: bonito: Use gpio_request_one()
  ...
Diffstat (limited to 'arch/arm/mach-shmobile/board-ag5evm.c')
| -rw-r--r-- | arch/arm/mach-shmobile/board-ag5evm.c | 22 | 
1 files changed, 8 insertions, 14 deletions
diff --git a/arch/arm/mach-shmobile/board-ag5evm.c b/arch/arm/mach-shmobile/board-ag5evm.c index 705bc63c798..8ff53a19c48 100644 --- a/arch/arm/mach-shmobile/board-ag5evm.c +++ b/arch/arm/mach-shmobile/board-ag5evm.c @@ -479,11 +479,10 @@ static void ag5evm_sdhi1_set_pwr(struct platform_device *pdev, int state)  	static int power_gpio = -EINVAL;  	if (power_gpio < 0) { -		int ret = gpio_request(GPIO_PORT114, "sdhi1_power"); -		if (!ret) { +		int ret = gpio_request_one(GPIO_PORT114, GPIOF_OUT_INIT_LOW, +					   "sdhi1_power"); +		if (!ret)  			power_gpio = GPIO_PORT114; -			gpio_direction_output(power_gpio, 0); -		}  	}  	/* @@ -604,14 +603,11 @@ static void __init ag5evm_init(void)  	gpio_request(GPIO_FN_MMCD0_5_PU, NULL);  	gpio_request(GPIO_FN_MMCD0_6_PU, NULL);  	gpio_request(GPIO_FN_MMCD0_7_PU, NULL); -	gpio_request(GPIO_PORT208, NULL); /* Reset */ -	gpio_direction_output(GPIO_PORT208, 1); +	gpio_request_one(GPIO_PORT208, GPIOF_OUT_INIT_HIGH, NULL); /* Reset */  	/* enable SMSC911X */ -	gpio_request(GPIO_PORT144, NULL); /* PINTA2 */ -	gpio_direction_input(GPIO_PORT144); -	gpio_request(GPIO_PORT145, NULL); /* RESET */ -	gpio_direction_output(GPIO_PORT145, 1); +	gpio_request_one(GPIO_PORT144, GPIOF_IN, NULL); /* PINTA2 */ +	gpio_request_one(GPIO_PORT145, GPIOF_OUT_INIT_HIGH, NULL); /* RESET */  	/* FSI A */  	gpio_request(GPIO_FN_FSIACK, NULL); @@ -626,15 +622,13 @@ static void __init ag5evm_init(void)  	gpio_request(GPIO_FN_PORT243_IRDA_FIRSEL, NULL);  	/* LCD panel */ -	gpio_request(GPIO_PORT217, NULL); /* RESET */ -	gpio_direction_output(GPIO_PORT217, 0); +	gpio_request_one(GPIO_PORT217, GPIOF_OUT_INIT_LOW, NULL); /* RESET */  	mdelay(1);  	gpio_set_value(GPIO_PORT217, 1);  	mdelay(100);  	/* LCD backlight controller */ -	gpio_request(GPIO_PORT235, NULL); /* RESET */ -	gpio_direction_output(GPIO_PORT235, 0); +	gpio_request_one(GPIO_PORT235, GPIOF_OUT_INIT_LOW, NULL); /* RESET */  	lcd_backlight_set_brightness(0);  	/* enable SDHI0 on CN15 [SD I/F] */  |