blob: 4ad4cc4051de32436ba395bd785273841a3d2f28 [file] [log] [blame]
Simon Glass6563b202020-12-19 10:40:03 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2020 Google LLC
4 */
5
6#ifndef __DM_SIMPLE_BUS_H
7#define __DM_SIMPLE_BUS_H
8
9struct simple_bus_plat {
10 u32 base;
11 u32 size;
12 u32 target;
13};
14
15#endif