diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2018-11-10 11:24:38 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-11-16 09:40:00 +0000 |
commit | dee0f8845bf2dcb45fd2f532d068dd3e7e2f9d3c (patch) | |
tree | a96daed82437fdcc14b8f2295486246331ab8152 /src/southbridge/amd | |
parent | 5f824332066ab66eb9d218263d3d68cf1ac50507 (diff) |
sb/amd: Fix grammar in comment
Change-Id: I478a59534ec997947855eb0ff228a0dd9e15a5a5
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/29567
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/southbridge/amd')
-rw-r--r-- | src/southbridge/amd/agesa/hudson/spi.c | 2 | ||||
-rw-r--r-- | src/southbridge/amd/cimx/sb800/spi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/amd/agesa/hudson/spi.c b/src/southbridge/amd/agesa/hudson/spi.c index de6792f692..74c4711536 100644 --- a/src/southbridge/amd/agesa/hudson/spi.c +++ b/src/southbridge/amd/agesa/hudson/spi.c @@ -88,7 +88,7 @@ void spi_init(void) static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout, size_t bytesout, void *din, size_t bytesin) { - /* First byte is cmd which can not being sent through FIFO. */ + /* First byte is cmd which can not be sent through FIFO. */ u8 cmd = *(u8 *)dout++; u8 readoffby1; size_t count; diff --git a/src/southbridge/amd/cimx/sb800/spi.c b/src/southbridge/amd/cimx/sb800/spi.c index 54dd77a729..ec18454cc7 100644 --- a/src/southbridge/amd/cimx/sb800/spi.c +++ b/src/southbridge/amd/cimx/sb800/spi.c @@ -57,7 +57,7 @@ void spi_init() static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout, size_t bytesout, void *din, size_t bytesin) { - /* First byte is cmd which can not being sent through FIFO. */ + /* First byte is cmd which can not be sent through FIFO. */ u8 cmd = *(u8 *)dout++; u8 readoffby1; u8 readwrite; |