gtbus.h 399 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * GTBUS initialisation
  4. *
  5. * (C) Copyright 2016 Theobroma Systems Design und Consulting GmbH
  6. * Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
  7. */
  8. #ifndef _SUNXI_GTBUS_H
  9. #define _SUNXI_GTBUS_H
  10. #if defined(CONFIG_MACH_SUN9I)
  11. #include <asm/arch/gtbus_sun9i.h>
  12. #endif
  13. #ifndef __ASSEMBLY__
  14. void gtbus_init(void);
  15. #endif
  16. #endif