summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-10-09 11:56:21 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2009-10-09 11:56:21 +0200
commitfbd2aaafa799592f2482a30944ba59351a666491 (patch)
tree65a50c5f03127a9b476124c365cbce34f820d906 /board
parent16019c2ff98f1943de768a10f51b96d4993beadb (diff)
downloadbarebox-fbd2aaafa799592f2482a30944ba59351a666491.tar.gz
barebox-fbd2aaafa799592f2482a30944ba59351a666491.tar.xz
pca100: remove imx_ prefix from gpio access functions
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'board')
-rw-r--r--board/phycard-i.MX27/pca100.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/phycard-i.MX27/pca100.c b/board/phycard-i.MX27/pca100.c
index e461a60f2a..91fe51917b 100644
--- a/board/phycard-i.MX27/pca100.c
+++ b/board/phycard-i.MX27/pca100.c
@@ -97,7 +97,7 @@ static void pca100_usbh_init(void)
mdelay(10);
- imx_gpio_direction_output(GPIO_PORTB + 24, 0);
+ gpio_direction_output(GPIO_PORTB + 24, 0);
mdelay(10);
@@ -180,9 +180,9 @@ static int pca100_devices_init(void)
/* disable the usb phys */
imx_gpio_mode((GPIO_PORTB | 23) | GPIO_GPIO | GPIO_IN);
- imx_gpio_direction_output(GPIO_PORTB + 23, 1);
+ gpio_direction_output(GPIO_PORTB + 23, 1);
imx_gpio_mode((GPIO_PORTB | 24) | GPIO_GPIO | GPIO_IN);
- imx_gpio_direction_output(GPIO_PORTB + 24, 1);
+ gpio_direction_output(GPIO_PORTB + 24, 1);
/* initizalize gpios */
for (i = 0; i < ARRAY_SIZE(mode); i++)