arch: tms570: fix Mixed Case Identifier

Fix Mixed Case Identifier reported by nxstyle tool

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
Alin Jerpelea 2021-04-08 20:23:23 +02:00 committed by Xiang Xiao
parent 37b314f29f
commit 602d384325
2 changed files with 3 additions and 3 deletions

View File

@ -198,8 +198,8 @@
#define PBIST_ALGO_TripleReadSlow (1 << 0)
#define PBIST_ALGO_TripleReadFast (1 << 1)
#define PBIST_ALGO_March13N_DP (1 << 2)
#define PBIST_ALGO_March13N_SP (1 << 3)
#define PBIST_ALGO_MARCH13N_DP (1 << 2)
#define PBIST_ALGO_MARCH13N_SP (1 << 3)
#define PBIST_ALGO_DOWN1a_DP (1 << 4)
#define PBIST_ALGO_DOWN1a_SP (1 << 5)
#define PBIST_ALGO_MapColumn_DP (1 << 6)

View File

@ -256,7 +256,7 @@ void tms570_memtest_selftest(void)
void tms570_memtest_start(uint32_t rinfol)
{
pbist_memtest_start(rinfol, PBIST_ALGO_March13N_SP);
pbist_memtest_start(rinfol, PBIST_ALGO_MARCH13N_SP);
}
/****************************************************************************