You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by da...@apache.org on 2020/07/10 19:13:29 UTC

[incubator-nuttx] branch master updated: drivers/eeprom/spi_xx25xx: Fixes build error.

This is an automated email from the ASF dual-hosted git repository.

davids5 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 731594b  drivers/eeprom/spi_xx25xx: Fixes build error.
731594b is described below

commit 731594b7d2bb3004c775bd2518d5728eb54a3688
Author: Anthony Merlino <an...@vergeaero.com>
AuthorDate: Fri Jul 10 02:24:49 2020 -0400

    drivers/eeprom/spi_xx25xx: Fixes build error.
---
 drivers/eeprom/spi_xx25xx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/eeprom/spi_xx25xx.c b/drivers/eeprom/spi_xx25xx.c
index 88e45bc..f89c7b3 100644
--- a/drivers/eeprom/spi_xx25xx.c
+++ b/drivers/eeprom/spi_xx25xx.c
@@ -654,6 +654,7 @@ static ssize_t ee25xx_read(FAR struct file *filep, FAR char *buffer,
 {
   FAR struct ee25xx_dev_s *eedev;
   FAR struct inode        *inode = filep->f_inode;
+  int ret;
 
   DEBUGASSERT(inode && inode->i_private);
   eedev = (FAR struct ee25xx_dev_s *)inode->i_private;