u-boot/arch/sandbox/include/asm/processor.h
Tom Rini 493c3da3ac sandbox: Add more dummy functions to mimic other architectures
This adds more common functions found on other architectures that will
allow for more compile-testing of drivers. These are either dummy
functions as we do not need them or mappings to existing functions,
similar to how other architectures handle it.

Signed-off-by: Tom Rini <trini@konsulko.com>
2025-08-11 15:11:19 -06:00

13 lines
192 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (c) 2014 Google, Inc
*/
#ifndef _ASM_PROCESSOR_H
#define _ASM_PROCESSOR_H
/* Assorted dummy functions */
#define cpu_relax()
#endif