[Blackfin][PATCH] Fix dynamic CPLB generation issue
This commit is contained in:
@@ -93,7 +93,7 @@ void icache_enable(void)
|
||||
|
||||
/* Fill the rest with invalid entry */
|
||||
if (j <= 15) {
|
||||
for (; j <= 16; j++) {
|
||||
for (; j < 16; j++) {
|
||||
debug("filling %i with 0", j);
|
||||
*I1++ = 0x0;
|
||||
}
|
||||
@@ -169,7 +169,7 @@ void dcache_enable(void)
|
||||
|
||||
/* Fill the rest with invalid entry */
|
||||
if (j <= 15) {
|
||||
for (; j <= 16; j++) {
|
||||
for (; j < 16; j++) {
|
||||
debug("filling %i with 0", j);
|
||||
*I1++ = 0x0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user