commit | e91d54535f8535c6de05044fa6f715a78f4320f8 | [log] [tgz] |
---|---|---|
author | Thomas Chou <thomas@wytron.com.tw> | Fri Dec 24 15:19:44 2010 +0800 |
committer | Scott McNutt <smcnutt@psyent.com> | Tue Feb 08 08:29:53 2011 -0500 |
tree | e1799392522cfcbea919a3be2ded164fa4d30dc4 | |
parent | 8d4addc3c3fe1a9ea160a5a1a20a1f934ff3fe97 [diff] [blame] |
nios2: add gpio_free Signed-off-by: Thomas Chou <thomas@wytron.com.tw> Signed-off-by: Scott McNutt <smcnutt@psyent.com>
diff --git a/board/altera/nios2-generic/gpio.c b/board/altera/nios2-generic/gpio.c index d449684..8c639ce 100644 --- a/board/altera/nios2-generic/gpio.c +++ b/board/altera/nios2-generic/gpio.c
@@ -20,6 +20,11 @@ return 0; } +int gpio_free(unsigned gpio) +{ + return 0; +} + int gpio_direction_input(unsigned gpio) { u32 mask = 1 << gpio;