From 8102502b9815843bec2154b607c4f299ce179d97 Mon Sep 17 00:00:00 2001 From: guozhanxin Date: Thu, 8 Jul 2021 16:37:07 +0800 Subject: [PATCH] [devfs] F_GETFL/F_SETFL should be handled by the drivers. --- components/dfs/src/dfs_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dfs/src/dfs_file.c b/components/dfs/src/dfs_file.c index 802311b54e..fa0f6000b4 100644 --- a/components/dfs/src/dfs_file.c +++ b/components/dfs/src/dfs_file.c @@ -157,7 +157,7 @@ int dfs_file_ioctl(struct dfs_fd *fd, int cmd, void *args) return -EINVAL; /* regular file system fd */ - if (fd->type == FT_REGULAR || fd->type == FT_DEVICE) + if (fd->type == FT_REGULAR) { switch (cmd) { -- GitLab