global_data.h 509 B

12345678910111213141516171819202122
  1. /*
  2. * (C) Copyright 2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * Copyright (c) 2017 Microsemi Corporation.
  6. * Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef __ASM_GBL_DATA_H
  11. #define __ASM_GBL_DATA_H
  12. /* Architecture-specific global data */
  13. struct arch_global_data {
  14. };
  15. #include <asm-generic/global_data.h>
  16. #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("gp")
  17. #endif /* __ASM_GBL_DATA_H */