You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/09/10 08:58:36 UTC

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7072: net/usrsock: Code refactor

pkarashchenko commented on code in PR #7072:
URL: https://github.com/apache/incubator-nuttx/pull/7072#discussion_r967622647


##########
drivers/usrsock/usrsock_dev.c:
##########
@@ -58,13 +58,13 @@
 
 struct usrsockdev_s
 {
-  sem_t    devsem; /* Lock for device node */
-  uint8_t  ocount; /* The number of times the device has been opened */
+  sem_t   devsem; /* Lock for device node */
+  uint8_t ocount; /* The number of times the device has been opened */
   struct
   {
-    FAR const struct iovec *iov; /* Pending request buffers */
-    int       iovcnt;            /* Number of request buffers */
-    size_t    pos;               /* Reader position on request buffer */
+    FAR const struct iovec *iov;    /* Pending request buffers */
+    int                     iovcnt; /* Number of request buffers */
+    size_t                  pos;    /* Reader position on request buffer */
   } req;
   struct pollfd *pollfds[CONFIG_NET_USRSOCKDEV_NPOLLWAITERS];

Review Comment:
   ```suggestion
     FAR struct pollfd *pollfds[CONFIG_NET_USRSOCKDEV_NPOLLWAITERS];
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org