[coreboot] New patch to review for coreboot: 79badab spi-generic.h: Adapt include guard

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Mon Feb 11 22:15:09 CET 2013


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2360

-gerrit

commit 79badab9136389375402261c4b2656a922ade52f
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Mon Feb 11 22:12:55 2013 +0100

    spi-generic.h: Adapt include guard
    
    Rename _SPI_H_ to _SPI_GENERIC_H_ to match recent file rename.
    
    Change-Id: I8b75e2e0a515fb540587630163ad289d0a6a0b22
    Reported-by: Peter Stuge <peter at stuge.se>
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 src/include/spi-generic.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/include/spi-generic.h b/src/include/spi-generic.h
index d394531..d252c32 100644
--- a/src/include/spi-generic.h
+++ b/src/include/spi-generic.h
@@ -21,8 +21,8 @@
  * MA 02111-1307 USA
  */
 
-#ifndef _SPI_H_
-#define _SPI_H_
+#ifndef _SPI_GENERIC_H_
+#define _SPI_GENERIC_H_
 
 #include <stdint.h>
 
@@ -201,4 +201,4 @@ static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
 	return ret < 0 ? ret : din[1];
 }
 
-#endif	/* _SPI_H_ */
+#endif	/* _SPI_GENERIC_H_ */



More information about the coreboot mailing list