global_data.h 401 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2004 Atmark Techno, Inc.
  4. *
  5. * Yasushi SHOJI <yashi@atmark-techno.com>
  6. */
  7. #ifndef __ASM_GBL_DATA_H
  8. #define __ASM_GBL_DATA_H
  9. /* Architecture-specific global data */
  10. struct arch_global_data {
  11. };
  12. #include <asm-generic/global_data.h>
  13. #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r31")
  14. #endif /* __ASM_GBL_DATA_H */