blob: a89102ecc6f10e85f27d1ac14baa67a5f769ba92 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Philipp Tomsich3015e042016-10-28 18:21:29 +08002/*
3 * GTBUS initialisation
4 *
5 * (C) Copyright 2016 Theobroma Systems Design und Consulting GmbH
6 * Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Philipp Tomsich3015e042016-10-28 18:21:29 +08007 */
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__
17void gtbus_init(void);
18#endif
19
20#endif