From e991e2da41dbe28aaffd41ec64a233b7fc44c412 Mon Sep 17 00:00:00 2001 From: mucor Date: Tue, 15 Jun 2021 20:52:23 +0800 Subject: [PATCH] fix: remove redundant headfile 1.remove redundant headfile in kernel, such as: compiler.h;debug.h;automount.h;inode.h;syslog.h;net.h; 2.split fs.h to file.h and driver.h 3.move vnode.h and path_cache.h to vfs/include 4.remove redundant interface and defines close: #I3RTNR Signed-off-by: mucor --- model/input/driver/hdf_touch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/input/driver/hdf_touch.c b/model/input/driver/hdf_touch.c index b129da732..d92aa1dad 100644 --- a/model/input/driver/hdf_touch.c +++ b/model/input/driver/hdf_touch.c @@ -104,7 +104,7 @@ int32_t TouchIoctl(InputDevice *inputdev, int32_t cmd, unsigned long arg) } #ifndef CONFIG_DISABLE_POLL -uint32_t TouchPoll(FAR struct file *filep, InputDevice *inputDev, poll_table *wait) +uint32_t TouchPoll(struct file *filep, InputDevice *inputDev, poll_table *wait) { uint32_t pollMask = 0; if (filep == NULL || filep->f_vnode == NULL) { -- Gitee