1 /* 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 
9 struct simple_bus_plat {
10 	u32 base;
11 	u32 size;
12 	u32 target;
13 };
14 
15 #endif
16