blob: 580b0199bb8563d94852a22c65d7a75c5b118bb0 [file] [log] [blame]
wdenk5c952cf2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00006 */
7#ifndef __ASM_NIOS2_GLOBALDATA_H_
8#define __ASM_NIOS2_GLOBALDATA_H_
9
Simon Glass5cb48582012-12-13 20:48:30 +000010/* Architecture-specific global data */
11struct arch_global_data {
12};
13
Simon Glass1f7559e2012-12-13 20:49:21 +000014#include <asm-generic/global_data.h>
wdenk5c952cf2004-10-10 21:27:30 +000015
Thomas Chou0df01fd32010-05-21 11:08:03 +080016#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
wdenk5c952cf2004-10-10 21:27:30 +000017
18#endif /* __ASM_NIOS2_GLOBALDATA_H_ */