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 
9 #ifndef _SUNXI_GTBUS_H
10 #define _SUNXI_GTBUS_H
11 
12 #if defined(CONFIG_MACH_SUN9I)
13 #include <asm/arch/gtbus_sun9i.h>
14 #endif
15 
16 #ifndef __ASSEMBLY__
17 void gtbus_init(void);
18 #endif
19 
20 #endif
21