Simon Glass | 7db0683 | 2020-12-19 10:40:03 -0700 | [diff] [blame] | 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 |