dm: crypto: Define UCLASS API for ECDSA signature verification
[platform/kernel/u-boot.git] / include / dm / simple_bus.h
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         fdt_addr_t base;
11         fdt_size_t size;
12         fdt_addr_t target;
13 };
14
15 #endif