aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/kernel/bfin_gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/kernel/bfin_gpio.c')
-rw-r--r--arch/blackfin/kernel/bfin_gpio.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/blackfin/kernel/bfin_gpio.c b/arch/blackfin/kernel/bfin_gpio.c
index 7f69f43be987..44b6c9da6c35 100644
--- a/arch/blackfin/kernel/bfin_gpio.c
+++ b/arch/blackfin/kernel/bfin_gpio.c
@@ -1172,10 +1172,9 @@ EXPORT_SYMBOL(bfin_gpio_get_value);
1172 * lives here as we need to force all the GPIO states w/out going through 1172 * lives here as we need to force all the GPIO states w/out going through
1173 * BUG() checks and such. 1173 * BUG() checks and such.
1174 */ 1174 */
1175void bfin_gpio_reset_spi0_ssel1(void) 1175void bfin_reset_boot_spi_cs(unsigned short pin)
1176{ 1176{
1177 u16 gpio = P_IDENT(P_SPI0_SSEL1); 1177 unsigned short gpio = P_IDENT(pin);
1178
1179 port_setup(gpio, GPIO_USAGE); 1178 port_setup(gpio, GPIO_USAGE);
1180 gpio_array[gpio_bank(gpio)]->data_set = gpio_bit(gpio); 1179 gpio_array[gpio_bank(gpio)]->data_set = gpio_bit(gpio);
1181 AWA_DUMMY_READ(data_set); 1180 AWA_DUMMY_READ(data_set);