mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
armv7m: mpu_config add missing break
For DEVICE_NON_SHARED the newly assigned value of attr is overwritten due to a missing break. The problem was indicated by cppcheck. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
6def7de37b
commit
a5981734a4
1 changed files with 1 additions and 0 deletions
|
@ -68,6 +68,7 @@ void mpu_config(struct mpu_region_config *reg_config)
|
||||||
break;
|
break;
|
||||||
case DEVICE_NON_SHARED:
|
case DEVICE_NON_SHARED:
|
||||||
attr = (2 << TEX_SHIFT) | BUFFERABLE;
|
attr = (2 << TEX_SHIFT) | BUFFERABLE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
attr = 0; /* strongly ordered */
|
attr = 0; /* strongly ordered */
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue