]> git.sur5r.net Git - u-boot/blobdiff - drivers/misc/mxs_ocotp.c
tools: mkimage: Call fclose in error path
[u-boot] / drivers / misc / mxs_ocotp.c
index 6f0a1d3e6da836c84ef59abc7644ca9adfda3830..a42164cccdfed3ed8500245080972c4258ca7309 100644 (file)
@@ -14,7 +14,7 @@
 
 #include <common.h>
 #include <fuse.h>
-#include <asm/errno.h>
+#include <linux/errno.h>
 #include <asm/io.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/imx-regs.h>
@@ -152,6 +152,7 @@ static int mxs_ocotp_scale_hclk(bool enter, uint32_t *val)
                /* Return the original HCLK clock speed. */
                *val = readl(&clkctrl_regs->hw_clkctrl_hbus);
                *val &= CLKCTRL_HBUS_DIV_MASK;
+               *val >>= CLKCTRL_HBUS_DIV_OFFSET;
 
                /* Scale the HCLK to 454/19 = 23.9 MHz . */
                scale_val = (~19) << CLKCTRL_HBUS_DIV_OFFSET;