2004-04-18 21:13:41 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2004 Atmark Techno, Inc.
|
|
|
|
*
|
|
|
|
* Yasushi SHOJI <yashi@atmark-techno.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2004-04-18 21:13:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_GBL_DATA_H
|
|
|
|
#define __ASM_GBL_DATA_H
|
2012-12-13 20:48:30 +00:00
|
|
|
|
|
|
|
/* Architecture-specific global data */
|
|
|
|
struct arch_global_data {
|
|
|
|
};
|
|
|
|
|
2012-12-13 20:49:18 +00:00
|
|
|
#include <asm-generic/global_data.h>
|
2004-04-18 21:13:41 +00:00
|
|
|
|
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r31")
|
|
|
|
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|