blob: be4e7b0fae2d1f30b54bb7c141ae8c64574ad02b [file] [log] [blame]
Simon Glassb0edea32018-11-15 18:44:09 -07001/* 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