]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - arch/nds32/include/asm/global_data.h
Add architecture-specific global data
[karo-tx-uboot.git] / arch / nds32 / include / asm / global_data.h
index b1feb2c0d0fc05558c9cb69a7ad00e3637a5d564..475bb445b5a0a10f985bbdca61d393abe8128b05 100644 (file)
 
 #ifndef        __ASM_GBL_DATA_H
 #define __ASM_GBL_DATA_H
+
+/* Architecture-specific global data */
+struct arch_global_data {
+};
+
 /*
  * The following data structure is placed in some memory wich is
  * available very early after boot (like DPRAM on MPC8xx/MPC82xx, or
@@ -63,6 +68,7 @@ typedef       struct global_data {
 
        void            **jt;           /* jump table */
        char            env_buf[32];    /* buffer for getenv() before reloc. */
+       struct arch_global_data arch;   /* architecture-specific data */
 } gd_t;
 
 #include <asm-generic/global_data_flags.h>