blob: c5729b8977e63439cf4aeaaee1277b513f2d17ae [file] [log] [blame]
Jorge Ramirez-Ortizeaa63b42018-09-23 09:40:45 +02001/*
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
10typedef struct io_drv_spec {
11 size_t offset;
12 size_t length;
13 uint32_t partition;
14} io_drv_spec_t;
15
16#endif