blob: b8308d5135457cdaab71281d28bff9dbfd386b96 [file] [log] [blame]
Philipp Tomsich3015e042016-10-28 18:21:29 +08001/*
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
10#ifndef _SUNXI_GTBUS_H
11#define _SUNXI_GTBUS_H
12
13#if defined(CONFIG_MACH_SUN9I)
14#include <asm/arch/gtbus_sun9i.h>
15#endif
16
17#ifndef __ASSEMBLY__
18void gtbus_init(void);
19#endif
20
21#endif