global_data.h 359 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2007, Tensilica Inc.
  4. */
  5. #ifndef _XTENSA_GBL_DATA_H
  6. #define _XTENSA_GBL_DATA_H
  7. /* Architecture-specific global data */
  8. struct arch_global_data {
  9. unsigned long cpu_clk;
  10. };
  11. #include <asm-generic/global_data.h>
  12. #define DECLARE_GLOBAL_DATA_PTR extern gd_t *gd
  13. #endif /* _XTENSA_GBL_DATA_H */