gpio.h 357 B

123456789101112131415161718
  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. #ifndef __MX28_GPIO_H__
  9. #define __MX28_GPIO_H__
  10. #ifdef CONFIG_MXS_GPIO
  11. void mxs_gpio_init(void);
  12. #else
  13. inline void mxs_gpio_init(void) {}
  14. #endif
  15. #endif /* __MX28_GPIO_H__ */