]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sandbox/include/asm/global_data.h
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
[karo-tx-uboot.git] / arch / sandbox / include / asm / global_data.h
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  *
4  * (C) Copyright 2002-2010
5  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef __ASM_GBL_DATA_H
11 #define __ASM_GBL_DATA_H
12
13 /* Architecture-specific global data */
14 struct arch_global_data {
15         uint8_t         *ram_buf;       /* emulated RAM buffer */
16 };
17
18 #include <asm-generic/global_data.h>
19
20 #define DECLARE_GLOBAL_DATA_PTR     extern gd_t *gd
21
22 #endif /* __ASM_GBL_DATA_H */