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
13void mxs_gpio_init(void);
14#else
15inline void mxs_gpio_init(void) {}
16#endif
17
18#endif	/* __MX28_GPIO_H__ */
19