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


##########
drivers/lcd/ssd1680.c:
##########
@@ -474,7 +474,7 @@ static void ssd1680_reset(struct ssd1680_dev_s *priv)
 static int ssd1680_setpower(FAR struct lcd_dev_s *dev, int power)
 {
   int ret = OK;
-  struct ssd1680_dev_s *priv = (struct ssd1680_dev_s *) dev;
+  struct ssd1680_dev_s *priv = (struct ssd1680_dev_s *)dev;

Review Comment:
   Done.



##########
drivers/lcd/st7565.c:
##########
@@ -264,7 +264,7 @@ static const struct lcd_planeinfo_s g_planeinfo =
 {
   .putrun  = st7565_putrun,           /* Put a run into LCD memory */
   .getrun  = st7565_getrun,           /* Get a run from LCD memory */
-  .buffer  = (uint8_t *) g_runbuffer, /* Run scratch buffer */
+  .buffer  = (uint8_t *)g_runbuffer,  /* Run scratch buffer */

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