gtbus.h 399 B

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