blob: 05868ac4f54fb5188a82d673184d0af8985f6ba9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk12490652004-04-18 21:13:41 +00002/*
3 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
5 * Yasushi SHOJI <yashi@atmark-techno.com>
wdenk12490652004-04-18 21:13:41 +00006 */
7
8#ifndef __ASM_GBL_DATA_H
9#define __ASM_GBL_DATA_H
Simon Glass3ac47d72012-12-13 20:48:30 +000010
11/* Architecture-specific global data */
12struct arch_global_data {
13};
14
Simon Glass8d0820e2012-12-13 20:49:18 +000015#include <asm-generic/global_data.h>
wdenk12490652004-04-18 21:13:41 +000016
17#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r31")
18
19#endif /* __ASM_GBL_DATA_H */