From 9308a72419c4b0ce4dfcbdb8393dea4781ec5bc6 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sun, 5 Mar 2023 11:58:00 +0800 Subject: [PATCH] vfs/poll: Remove the unused ptr field from pollfd forget in the commit: commit 0a95c7721bab13b329bb681ecf38e558498f2d77 Author: Xiang Xiao Date: Fri Nov 11 03:47:07 2022 +0800 vfs/poll: Remove POLLFILE and POLLSOCK NuttX specific extension Signed-off-by: Xiang Xiao --- include/sys/poll.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/sys/poll.h b/include/sys/poll.h index c17057c68a..08b936aff6 100644 --- a/include/sys/poll.h +++ b/include/sys/poll.h @@ -117,7 +117,6 @@ struct pollfd /* Non-standard fields used internally by NuttX. */ - FAR void *ptr; /* The psock or file being polled */ FAR void *arg; /* The poll callback function argument */ pollcb_t cb; /* The poll callback function */ FAR void *priv; /* For use by drivers */