diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-07-02 17:02:50 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-10-22 03:48:54 -0400 |
commit | 3d7dc8836a0f08cbe6d8d499ddce05809b687f58 (patch) | |
tree | 8f3be0975dc5066de745e216a6a0b595ed497836 /arch/blackfin/mach-bf561 | |
parent | 41c3e3346ab8e5caf9e76395bd812fac884ad371 (diff) |
Blackfin: i2c-gpio boards: use GPIO_PF# defines
Rather than use raw numbers for the GPIO pins, use proper GPIO defines.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf561')
-rw-r--r-- | arch/blackfin/mach-bf561/boards/ezkit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/mach-bf561/boards/ezkit.c b/arch/blackfin/mach-bf561/boards/ezkit.c index f1e27d2c3619..ab7a487975fd 100644 --- a/arch/blackfin/mach-bf561/boards/ezkit.c +++ b/arch/blackfin/mach-bf561/boards/ezkit.c | |||
@@ -380,8 +380,8 @@ static struct platform_device bfin_device_gpiokeys = { | |||
380 | #include <linux/i2c-gpio.h> | 380 | #include <linux/i2c-gpio.h> |
381 | 381 | ||
382 | static struct i2c_gpio_platform_data i2c_gpio_data = { | 382 | static struct i2c_gpio_platform_data i2c_gpio_data = { |
383 | .sda_pin = 1, | 383 | .sda_pin = GPIO_PF1, |
384 | .scl_pin = 0, | 384 | .scl_pin = GPIO_PF0, |
385 | .sda_is_open_drain = 0, | 385 | .sda_is_open_drain = 0, |
386 | .scl_is_open_drain = 0, | 386 | .scl_is_open_drain = 0, |
387 | .udelay = 40, | 387 | .udelay = 40, |