diff options
Diffstat (limited to 'arch/arm/mach-mx5/board-mx51_babbage.c')
| -rw-r--r-- | arch/arm/mach-mx5/board-mx51_babbage.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-mx5/board-mx51_babbage.c b/arch/arm/mach-mx5/board-mx51_babbage.c index b2ecd194e76d..bea4e4135f9d 100644 --- a/arch/arm/mach-mx5/board-mx51_babbage.c +++ b/arch/arm/mach-mx5/board-mx51_babbage.c | |||
| @@ -228,13 +228,12 @@ static inline void babbage_fec_reset(void) | |||
| 228 | int ret; | 228 | int ret; |
| 229 | 229 | ||
| 230 | /* reset FEC PHY */ | 230 | /* reset FEC PHY */ |
| 231 | ret = gpio_request(BABBAGE_FEC_PHY_RESET, "fec-phy-reset"); | 231 | ret = gpio_request_one(BABBAGE_FEC_PHY_RESET, |
| 232 | GPIOF_OUT_INIT_LOW, "fec-phy-reset"); | ||
| 232 | if (ret) { | 233 | if (ret) { |
| 233 | printk(KERN_ERR"failed to get GPIO_FEC_PHY_RESET: %d\n", ret); | 234 | printk(KERN_ERR"failed to get GPIO_FEC_PHY_RESET: %d\n", ret); |
| 234 | return; | 235 | return; |
| 235 | } | 236 | } |
| 236 | gpio_direction_output(BABBAGE_FEC_PHY_RESET, 0); | ||
| 237 | gpio_set_value(BABBAGE_FEC_PHY_RESET, 0); | ||
| 238 | msleep(1); | 237 | msleep(1); |
| 239 | gpio_set_value(BABBAGE_FEC_PHY_RESET, 1); | 238 | gpio_set_value(BABBAGE_FEC_PHY_RESET, 1); |
| 240 | } | 239 | } |
