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