1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Architecture-specific SPL handoff information for sandbox
4 *
5 * Copyright 2018 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#ifndef __handoff_h
10#define __handoff_h
11
12#define TEST_HANDOFF_MAGIC	0x14f93c7b
13
14struct arch_spl_handoff {
15	ulong	magic;		/* Used for testing */
16};
17
18#endif
19