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