u-boot/arch/xtensa/include/asm/global_data.h
Tom Rini 03de305ec4 Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"
As part of bringing the master branch back in to next, we need to allow
for all of these changes to exist here.

Reported-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-20 13:35:03 -06:00

21 lines
384 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* (C) Copyright 2007, Tensilica Inc.
*/
#ifndef _XTENSA_GBL_DATA_H
#define _XTENSA_GBL_DATA_H
#include <asm/u-boot.h>
/* Architecture-specific global data */
struct arch_global_data {
unsigned long cpu_clk;
};
#include <asm-generic/global_data.h>
#define DECLARE_GLOBAL_DATA_PTR extern gd_t *gd
#endif /* _XTENSA_GBL_DATA_H */