Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6151
-gerrit
commit 3fe6d5b31f83f682331b8481c2f821c9a85168a2 Author: Paul Menzel paulepanter@users.sourceforge.net Date: Sat Jun 28 09:06:57 2014 +0200
northbridge/amd: Spell *sync* without *h* in comments
Run the following command to fix all occurrences in `src/northbridge`.
$ git grep -l "synch " src/northbridge | xargs sed -i 's/synch /sync /g'
Change-Id: I630aadae77524c3ab2171d721ad079a97b09e57f Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/northbridge/amd/amdht/h3ncmn.c | 10 +++++----- src/northbridge/amd/gx2/northbridgeinit.c | 2 +- src/northbridge/amd/lx/northbridgeinit.c | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/northbridge/amd/amdht/h3ncmn.c b/src/northbridge/amd/amdht/h3ncmn.c index cba21b3..da41369 100644 --- a/src/northbridge/amd/amdht/h3ncmn.c +++ b/src/northbridge/amd/amdht/h3ncmn.c @@ -350,7 +350,7 @@ static BOOL verifyLinkIsCoherent(u8 node, u8 link, cNorthBridge *nb) * * Description: * Return the LinkFailed status AFTER an attempt is made to clear the bit. - * Also, call event notify if a Hardware Fault caused a synch flood on a previous boot. + * Also, call event notify if a Hardware Fault caused a sync flood on a previous boot. * * The table below summarizes correct responses of this routine. * Family before after unconnected Notify? return @@ -397,10 +397,10 @@ static BOOL readTrueLinkFailStatus(u8 node, u8 link, sMainData *pDat, cNorthBrid { if (crc != 0) { - /* A synch flood occurred due to HT CRC */ + /* A sync flood occurred due to HT CRC */ if (pDat->HtBlock->AMD_CB_EventNotify) { - /* Pass the node and link on which the generic synch flood event occurred. */ + /* Pass the node and link on which the generic sync flood event occurred. */ sHtEventHWHtCrc evt; evt.eSize = sizeof(sHtEventHWHtCrc); evt.node = node; @@ -414,10 +414,10 @@ static BOOL readTrueLinkFailStatus(u8 node, u8 link, sMainData *pDat, cNorthBrid } else { - /* Some synch flood occurred */ + /* Some sync flood occurred */ if (pDat->HtBlock->AMD_CB_EventNotify) { - /* Pass the node and link on which the generic synch flood event occurred. */ + /* Pass the node and link on which the generic sync flood event occurred. */ sHtEventHWSynchFlood evt; evt.eSize = sizeof(sHtEventHWSynchFlood); evt.node = node; diff --git a/src/northbridge/amd/gx2/northbridgeinit.c b/src/northbridge/amd/gx2/northbridgeinit.c index 47611bf..7b49737 100644 --- a/src/northbridge/amd/gx2/northbridgeinit.c +++ b/src/northbridge/amd/gx2/northbridgeinit.c @@ -659,7 +659,7 @@ void northbridge_init_early(void) GLIUInit(gliutables[i]);
/* Now that the descriptor to memory is set up. */ - /* The memory controller needs one read to synch its lines before it can be used. */ + /* The memory controller needs one read to sync its lines before it can be used. */ i = *(int *) 0;
GeodeLinkPriority(); diff --git a/src/northbridge/amd/lx/northbridgeinit.c b/src/northbridge/amd/lx/northbridgeinit.c index 42b91d6..7bd3285 100644 --- a/src/northbridge/amd/lx/northbridgeinit.c +++ b/src/northbridge/amd/lx/northbridgeinit.c @@ -741,7 +741,7 @@ void northbridge_init_early(void) GLIUInit(gliutables[i]);
/* Now that the descriptor to memory is set up. */ - /* The memory controller needs one read to synch its lines before it can be used. */ + /* The memory controller needs one read to sync its lines before it can be used. */ i = *(int *)0;
GeodeLinkPriority();