mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 15:58:59 +08:00
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:
committed by
Xiang Xiao
parent
37b314f29f
commit
602d384325
@@ -198,8 +198,8 @@
|
|||||||
|
|
||||||
#define PBIST_ALGO_TripleReadSlow (1 << 0)
|
#define PBIST_ALGO_TripleReadSlow (1 << 0)
|
||||||
#define PBIST_ALGO_TripleReadFast (1 << 1)
|
#define PBIST_ALGO_TripleReadFast (1 << 1)
|
||||||
#define PBIST_ALGO_March13N_DP (1 << 2)
|
#define PBIST_ALGO_MARCH13N_DP (1 << 2)
|
||||||
#define PBIST_ALGO_March13N_SP (1 << 3)
|
#define PBIST_ALGO_MARCH13N_SP (1 << 3)
|
||||||
#define PBIST_ALGO_DOWN1a_DP (1 << 4)
|
#define PBIST_ALGO_DOWN1a_DP (1 << 4)
|
||||||
#define PBIST_ALGO_DOWN1a_SP (1 << 5)
|
#define PBIST_ALGO_DOWN1a_SP (1 << 5)
|
||||||
#define PBIST_ALGO_MapColumn_DP (1 << 6)
|
#define PBIST_ALGO_MapColumn_DP (1 << 6)
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ void tms570_memtest_selftest(void)
|
|||||||
|
|
||||||
void tms570_memtest_start(uint32_t rinfol)
|
void tms570_memtest_start(uint32_t rinfol)
|
||||||
{
|
{
|
||||||
pbist_memtest_start(rinfol, PBIST_ALGO_March13N_SP);
|
pbist_memtest_start(rinfol, PBIST_ALGO_MARCH13N_SP);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|||||||
Reference in New Issue
Block a user