mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
a1ce9ed063
Changes in relation to FriendlyARM's U-Boot nanopi2-v2016.01: - DM_VIDEO support (display_dev.h). - boot0.h added, handles NSIH --> tools/nexell obsolete. - gpio.h: Include-path to errno.h changed. Signed-off-by: Stefan Bosch <stefan_b@posteo.net>
17 lines
315 B
C
17 lines
315 B
C
/* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* (C) Copyright 2016 Nexell
|
|
* DeokJin, Lee <truevirtue@nexell.co.kr>
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_NEXELL_GPIO_H
|
|
#define __ASM_ARCH_NEXELL_GPIO_H
|
|
|
|
#include <asm/io.h>
|
|
#include <linux/errno.h>
|
|
|
|
#define PIN_BASE 0
|
|
|
|
#define MAX_GPIO_BANKS 5
|
|
|
|
#endif /* __ASM_ARCH_NEXELL_GPIO_H */
|