patacongo commented on a change in pull request #661: Check return from 
nxsem_wait_initialize()
URL: https://github.com/apache/incubator-nuttx/pull/661#discussion_r400573570
 
 

 ##########
 File path: drivers/eeprom/i2c_xx24xx.c
 ##########
 @@ -253,7 +275,8 @@ static int ee24xx_waitwritecomplete(FAR struct 
ee24xx_dev_s *eedev,
   uint32_t addr_hi = (memaddr >> (eedev->addrlen << 3));
 
   msgs[0].frequency = eedev->freq;
-  msgs[0].addr      = eedev->addr | (addr_hi & ((1 << eedev->haddrbits) - 1));
+  msgs[0].addr      = eedev->addr | \
+                      (addr_hi & ((1 << eedev->haddrbits) - 1));
 
 Review comment:
   The line continuation character \ should not be used in C code.  It is not 
necessary in C.
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to