summaryrefslogtreecommitdiff
path: root/arch/arc/lib/cpu.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-01-25 10:41:24 -0500
committerTom Rini <trini@konsulko.com>2019-01-25 10:41:24 -0500
commit87f78478a4a1bf574db0b0e575ca37cf91fb187c (patch)
treeffd24bbe72072067cda47dbc7ea1abe80b1e01ac /arch/arc/lib/cpu.c
parentd01806a8fcbdaedcc67cead56ece572021d97ab7 (diff)
parentfae3798ac9f6de5a4cb1aa1e849d419a2bb8dbbe (diff)
Merge tag 'arc-fixes-for-2019.04-rc1' of git://git.denx.de/u-boot-arc
A couple of trivial fixes and improvements for ARC Most notable are: * Move of ENV_SIZE/ENV_OFFSET to Kconfig * Fix with private structure allocation for arc_uart * Definition of CONFIG_SYS_CACHELINE_SIZE useful for building drivers
Diffstat (limited to 'arch/arc/lib/cpu.c')
-rw-r--r--arch/arc/lib/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/lib/cpu.c b/arch/arc/lib/cpu.c
index 07daaa8d155..01cca95d5b1 100644
--- a/arch/arc/lib/cpu.c
+++ b/arch/arc/lib/cpu.c
@@ -87,7 +87,7 @@ const char *arc_em_version(int arcver, char *name, int name_len)
bool xymem = ARC_FEATURE_EXISTS(ARC_AUX_XY_BUILD);
int i;
- for (i = 0; i++ < sizeof(em_versions) / sizeof(struct em_template_t);) {
+ for (i = 0; i < sizeof(em_versions) / sizeof(struct em_template_t); i++) {
if (em_versions[i].cache == cache &&
em_versions[i].dsp == dsp &&
em_versions[i].xymem == xymem) {
@@ -147,7 +147,7 @@ const char *arc_hs_version(int arcver, char *name, int name_len)
bool dual_issue = arcver == 0x54 ? true : false;
int i;
- for (i = 0; i++ < sizeof(hs_versions) / sizeof(struct hs_template_t);) {
+ for (i = 0; i < sizeof(hs_versions) / sizeof(struct hs_template_t); i++) {
if (hs_versions[i].cache == cache &&
hs_versions[i].mmu == mmu &&
hs_versions[i].dual_issue == dual_issue &&