xiaoxiang781216 commented on code in PR #6965: URL: https://github.com/apache/incubator-nuttx/pull/6965#discussion_r988555031
########## drivers/modem/u-blox.c: ########## @@ -77,29 +77,29 @@ struct ubxmdm_upper { - FAR char * path; /* Registration path */ + FAR char *path; /* Registration path */ /* The contained lower-half driver. */ - FAR struct ubxmdm_lower * lower; + FAR struct ubxmdm_lower *lower; }; /**************************************************************************** * Private Function Prototypes ****************************************************************************/ -static ssize_t ubxmdm_read (FAR struct file * filep, +static ssize_t ubxmdm_read (FAR struct file *filep, FAR char * buffer, size_t buflen); -static ssize_t ubxmdm_write(FAR struct file * filep, - FAR const char * buffer, +static ssize_t ubxmdm_write(FAR struct file *filep, + FAR const char *buffer, size_t buflen); -static int ubxmdm_ioctl(FAR struct file * filep, +static int ubxmdm_ioctl(FAR struct file *filep, int cmd, unsigned long arg); -static int ubxmdm_poll (FAR struct file * filep, - FAR struct pollfd * fds, +static int ubxmdm_poll (FAR struct file *filep, Review Comment: Keep since it align with other line -- 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