You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
300 B
17 lines
300 B
/*
|
|
* Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef IO_COMMON_H
|
|
#define IO_COMMON_H
|
|
|
|
typedef struct io_drv_spec {
|
|
size_t offset;
|
|
size_t length;
|
|
uint32_t partition;
|
|
} io_drv_spec_t;
|
|
|
|
#endif /* IO_COMMON_H */
|