xref: /aosp_15_r20/external/arm-trusted-firmware/drivers/renesas/common/io/io_common.h (revision 54fd6939e177f8ff529b10183254802c76df6d08)
1 /*
2  * Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef IO_COMMON_H
8 #define IO_COMMON_H
9 
10 typedef struct io_drv_spec {
11 	size_t offset;
12 	size_t length;
13 	uint32_t partition;
14 } io_drv_spec_t;
15 
16 #endif /* IO_COMMON_H */
17