iproc_gpio.h 427 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2019-2020, Broadcom
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef IPROC_GPIO_H
  7. #define IPROC_GPIO_H
  8. #ifdef USE_GPIO
  9. void iproc_gpio_init(uintptr_t base, int nr_gpios, uintptr_t pinmux_base,
  10. uintptr_t pinconf_base);
  11. #else
  12. static void iproc_gpio_init(uintptr_t base, int nr_gpios, uintptr_t pinmux_base,
  13. uintptr_t pinconf_base)
  14. {
  15. }
  16. #endif /* IPROC_GPIO */
  17. #endif /* IPROC_GPIO_H */