]> Git Repo - J-u-boot.git/commitdiff
armv8: minor fix to comment for enabling SMPEN bit
authorDinh Nguyen <[email protected]>
Thu, 27 Apr 2017 04:36:03 +0000 (23:36 -0500)
committerTom Rini <[email protected]>
Mon, 15 May 2017 14:38:04 +0000 (10:38 -0400)
The SMPEN bit is located in the cpuectlr_el1 register and not the
cpuactlr_el1 register. Adjust the comment accordingly and also fix
a spelling error.

Signed-off-by: Dinh Nguyen <[email protected]>
CC: Mingkai Hu <[email protected]>
CC: Gong Qianyu <[email protected]>
CC: Mateusz Kulikowski <[email protected]>
CC: Hou Zhiqiang <[email protected]>
CC: York Sun <[email protected]>
CC: Albert Aribaud <[email protected]>
CC: Masahiro Yamada <[email protected]>
Reviewed-by: York Sun <[email protected]>
arch/arm/cpu/armv8/start.S

index 62d97f7e882225a027390e8d2b6f13c4a6a606de..354468b9053d5e03d7ca8d513ce33623abd47c32 100644 (file)
@@ -86,12 +86,12 @@ save_boot_params_ret:
 0:
 
        /*
-        * Enalbe SMPEN bit for coherency.
+        * Enable SMPEN bit for coherency.
         * This register is not architectural but at the moment
         * this bit should be set for A53/A57/A72.
         */
 #ifdef CONFIG_ARMV8_SET_SMPEN
-       mrs     x0, S3_1_c15_c2_1               /* cpuactlr_el1 */
+       mrs     x0, S3_1_c15_c2_1               /* cpuectlr_el1 */
        orr     x0, x0, #0x40
        msr     S3_1_c15_c2_1, x0
 #endif
This page took 0.036884 seconds and 4 git commands to generate.