xref: /openbmc/u-boot/arch/arm/include/asm/arch-mxs/gpio.h (revision 11ae93eef40c09280f36104b6a8cf5d807f0bb0d)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Freescale i.MX28 GPIO
4  *
5  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
6  * on behalf of DENX Software Engineering GmbH
7  */
8 
9 #ifndef	__MX28_GPIO_H__
10 #define	__MX28_GPIO_H__
11 
12 #ifdef	CONFIG_MXS_GPIO
13 void mxs_gpio_init(void);
14 #else
15 inline void mxs_gpio_init(void) {}
16 #endif
17 
18 #endif	/* __MX28_GPIO_H__ */
19