Blackfin arch: extract gpio number from PIN function
Singed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
parent
168f1212c0
commit
4d5f4ed3fb
1 changed files with 4 additions and 2 deletions
|
@ -902,7 +902,9 @@ EXPORT_SYMBOL(gpio_direction_output);
|
|||
*/
|
||||
void bfin_gpio_reset_spi0_ssel1(void)
|
||||
{
|
||||
port_setup(P_SPI0_SSEL1, GPIO_USAGE);
|
||||
gpio_bankb[gpio_bank(P_SPI0_SSEL1)]->data_set = gpio_bit(P_SPI0_SSEL1);
|
||||
u16 gpio = P_IDENT(P_SPI0_SSEL1);
|
||||
|
||||
port_setup(gpio, GPIO_USAGE);
|
||||
gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio);
|
||||
udelay(1);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue