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