xiaoxiang781216 commented on code in PR #6965:
URL: https://github.com/apache/incubator-nuttx/pull/6965#discussion_r988537115


##########
drivers/contactless/pn532.c:
##########
@@ -483,7 +483,7 @@ int pn532_read_frame(FAR struct pn532_dev_s *dev, FAR 
struct pn532_frame *f,
     {
       /* Read header */
 
-      pn532_read(dev, (uint8_t *) f, sizeof(struct pn532_frame));
+      pn532_read(dev, (uint8_t *)f, sizeof(struct pn532_frame));

Review Comment:
   Done.



##########
drivers/contactless/pn532.c:
##########
@@ -410,7 +410,7 @@ int pn532_read_ack(FAR struct pn532_dev_s *dev)
   int res = 0;
   uint8_t ack[6];
 
-  pn532_read(dev, (uint8_t *) &ack, 6);
+  pn532_read(dev, (uint8_t *)&ack, 6);

Review Comment:
   Done.



-- 
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-unsubscr...@nuttx.apache.org

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

Reply via email to