diff options
author | Purna Chandra Mandal <purna.mandal@microchip.com> | 2015-12-17 23:01:31 +0530 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-01-16 21:06:45 +0100 |
commit | 1a96780016beba15470ce34689dc951761db2d2a (patch) | |
tree | 0f60f7ece1d5516fcec949fa9a2ce38abc5ae55b /arch/mips | |
parent | 782acf7b52db6bec1a796773e3033b4afcd6c9e2 (diff) | |
download | u-boot-1a96780016beba15470ce34689dc951761db2d2a.tar.gz u-boot-1a96780016beba15470ce34689dc951761db2d2a.tar.bz2 u-boot-1a96780016beba15470ce34689dc951761db2d2a.zip |
MIPS: add asm/gpio.h to fix compilation error with CONFIG_CMD_GPIO.
With CONFIG_CMD_GPIO compilation reports error.
common/cmd_gpio.c:13:22: fatal error: asm/gpio.h: No such file or directory
#include <asm/gpio.h>
^
Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com>
Reviewed-by: Chin Liang See <clsee@altera.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/gpio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/gpio.h b/arch/mips/include/asm/gpio.h new file mode 100644 index 0000000000..306ab4c9f2 --- /dev/null +++ b/arch/mips/include/asm/gpio.h @@ -0,0 +1 @@ +#include <asm-generic/gpio.h> |