1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 */ 9 10 #ifndef __DEVICE_FS_H__ 11 #define __DEVICE_FS_H__ 12 13 const struct dfs_file_ops *dfs_devfs_fops(void); 14 mode_t dfs_devfs_device_to_mode(struct rt_device *device); 15 void dfs_devfs_device_add(rt_device_t device); 16 int dfs_devfs_update(void); 17 18 #endif 19