xref: /openbmc/hiomapd/mtd/backend.h (revision a042978b03c91ca3a716e99f313ef5cda42820ba)
1 /* SPDX-License-Identifier: Apache-2.0 */
2 /* Copyright (C) 2019 IBM Corp. */
3 
4 #ifndef MTD_BACKEND_H
5 #define MTD_BACKEND_H
6 
7 struct mtd_data {
8 	int fd;
9 	uint8_t *flash_bmap;
10 	struct mtd_info_user mtd_info;
11 };
12 
13 #endif
14