Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2360
-gerrit commit 79badab9136389375402261c4b2656a922ade52f Author: Patrick Georgi <[email protected]> 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 <[email protected]> Signed-off-by: Patrick Georgi <[email protected]> --- 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_ */ -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

