1 /*
2  * Copyright 2024 NXP
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_MODULES_FATFS_ZFS_DISKIO_H_
8 #define ZEPHYR_MODULES_FATFS_ZFS_DISKIO_H_
9 /*
10  * Header file for Zephyr specific portions of the FatFS disk interface.
11  * These APIs are internal to Zephyr's FatFS VFS implementation
12  */
13 
14 /*
15  * Values that can be passed to buffer pointer used by disk_ioctl() when
16  * sending CTRL_POWER IOCTL
17  */
18 #define DISK_IOCTL_POWER_OFF 0x0
19 #define DISK_IOCTL_POWER_ON 0x1
20 
21 
22 #endif /* ZEPHYR_MODULES_FATFS_ZFS_DISKIO_H_ */
23