mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-02-06 00:45:22 +08:00
[DFS] prepare for dfs_v2.0 (#7200)
* [DFS] prepare for dfs_v2. dfs_fd -> dfs_file; dfs_fnode -> dfs_vnode. * [BSP] fix code analysis warning * [smart] fix the pointer overflow. * code format * [smart] fix the lwp->lwp_obj checking.
This commit is contained in:
@@ -25,13 +25,13 @@
|
||||
#include <sys/ioctl.h>
|
||||
#include <dfs_file.h>
|
||||
|
||||
static int bus_fops_open(struct dfs_fd *fd)
|
||||
static int bus_fops_open(struct dfs_file *fd)
|
||||
{
|
||||
LOG_D("bus fops open");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int bus_fops_close(struct dfs_fd *fd)
|
||||
static int bus_fops_close(struct dfs_file *fd)
|
||||
{
|
||||
LOG_D("bus fops close");
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user