From 392e2442f532e7cf51054c1e102cf232c7c4e903 Mon Sep 17 00:00:00 2001 From: shenkang Date: Fri, 30 May 2025 11:43:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=B8=8D=E5=AF=B9=E5=A4=96=E7=9A=84?= =?UTF-8?q?=E5=87=BD=E6=95=B0=E6=94=B9=E4=B8=BAprivate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shenkang --- input/udriver/include/input_device_manager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/udriver/include/input_device_manager.h b/input/udriver/include/input_device_manager.h index c4266e9ef7..380acf04b2 100644 --- a/input/udriver/include/input_device_manager.h +++ b/input/udriver/include/input_device_manager.h @@ -75,7 +75,6 @@ public: int32_t OpenInputDevice(string devPath); RetStatus CloseInputDevice(string devPath); int32_t GetInputDeviceInfo(int32_t fd, InputDeviceInfo *detailInfo); - int32_t DoInputDeviceAction(void); int32_t InotifyEventHandler(int32_t epollFd, int32_t notifyFd); void RemoveEpoll(int32_t epollFd, int32_t fileFd); int32_t AddToEpoll(int32_t epollFd, int32_t fileFd); @@ -130,6 +129,7 @@ public: } } private: + int32_t DoInputDeviceAction(void); void DeleteDevListNode(int index); int32_t AddDeviceNodeToList( int32_t &epollFd, int32_t &fd, string devPath, std::shared_ptr &detailInfo);