blob: a0bab6ec52cc94ce008a114fa4fa1d9899e83483 [file] [log] [blame]
wdenk507bbe32004-04-18 21:13:41 +00001/*
2 * (C) Copyright 2004 Atmark Techno, Inc.
3 *
4 * Yasushi SHOJI <yashi@atmark-techno.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenk507bbe32004-04-18 21:13:41 +00007 */
8
9#ifndef __ASM_GBL_DATA_H
10#define __ASM_GBL_DATA_H
Simon Glass5cb48582012-12-13 20:48:30 +000011
12/* Architecture-specific global data */
13struct arch_global_data {
14};
15
Simon Glasseef54152012-12-13 20:49:18 +000016#include <asm-generic/global_data.h>
wdenk507bbe32004-04-18 21:13:41 +000017
18#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r31")
19
20#endif /* __ASM_GBL_DATA_H */