From: Marek Vasut Date: Wed, 21 Nov 2012 16:50:39 +0000 (+0000) Subject: mx28: Fix typo in POWER_MINPWR_VBG_OFF X-Git-Tag: v2013.01-rc3~9^2~3^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=90a21030e330645d559a488f806c087809305eff;p=oweals%2Fu-boot.git mx28: Fix typo in POWER_MINPWR_VBG_OFF The POWER_MINPWR_VBG_OFF bit in mx28 power supply block is not called POWER_MINPWR_FBG_OFF, but POWER_MINPWR_VBG_OFF. Correct the name in the header file. Signed-off-by: Marek Vasut Cc: Stefano Babic --- diff --git a/arch/arm/include/asm/arch-mxs/regs-power.h b/arch/arm/include/asm/arch-mxs/regs-power.h index a46a372682..3c98cce203 100644 --- a/arch/arm/include/asm/arch-mxs/regs-power.h +++ b/arch/arm/include/asm/arch-mxs/regs-power.h @@ -128,7 +128,7 @@ struct mxs_power_regs { #define POWER_MINPWR_PWD_ANA_CMPS (1 << 10) #define POWER_MINPWR_ENABLE_OSC (1 << 9) #define POWER_MINPWR_SELECT_OSC (1 << 8) -#define POWER_MINPWR_FBG_OFF (1 << 7) +#define POWER_MINPWR_VBG_OFF (1 << 7) #define POWER_MINPWR_DOUBLE_FETS (1 << 6) #define POWER_MINPWR_HALFFETS (1 << 5) #define POWER_MINPWR_LESSANA_I (1 << 4)