Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 1 | /* |
Wolfgang Denk | 91a7675 | 2010-07-24 20:22:02 +0200 | [diff] [blame] | 2 | * (C) Copyright 2002-2010 |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * (C) Copyright 2007 |
| 6 | * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __ASM_SH_GLOBALDATA_H_ |
| 12 | #define __ASM_SH_GLOBALDATA_H_ |
| 13 | |
Simon Glass | 5cb4858 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 14 | /* Architecture-specific global data */ |
| 15 | struct arch_global_data { |
| 16 | }; |
| 17 | |
Simon Glass | a987902 | 2012-12-13 20:49:25 +0000 | [diff] [blame] | 18 | #include <asm-generic/global_data.h> |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 19 | |
| 20 | #define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("r13") |
| 21 | |
| 22 | #endif /* __ASM_SH_GLOBALDATA_H_ */ |