blob: 74fca6df75c83eec60204290b155beba9de4990e [file] [log] [blame]
Simon Glass6abd9922024-08-21 10:19:09 -06001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2024 Google LLC
4 * Written by: Simon Glass <sjg@chromeium.org>
5 */
6
7#ifndef __BOARD_F
8#define __BOARD_F
9
10/**
11 * struct board_f: Information used only before relocation
12 *
13 * This struct is set up in board_init_f() and used to deal with relocation. It
14 * is not available after relocation.
15 */
16struct board_f {
17 /**
18 * @new_fdt: relocated device tree
19 */
20 void *new_fdt;
21};
22
23#endif