diff options
| author | Marek Vasut <marex@denx.de> | 2012-11-21 17:02:59 +0000 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2012-11-24 16:21:37 +0100 | 
| commit | 1d4fd0dc3b45de7b7a706285845ef5b527422014 (patch) | |
| tree | 3423e5ec10d8c0a7feeef83608cdf3a677a6ee53 | |
| parent | 90a21030e330645d559a488f806c087809305eff (diff) | |
| download | olio-uboot-2014.01-1d4fd0dc3b45de7b7a706285845ef5b527422014.tar.xz olio-uboot-2014.01-1d4fd0dc3b45de7b7a706285845ef5b527422014.zip | |
mx28: Fix typo in POWER_DCLIMITS_NEGLIMIT_OFFSET
The POWER_DCLIMITS_NEGLIMIT_OFFSET bit in mx28 power supply block is
not called POWER_DCLIMITS_NETLIMIT_OFFSET, but POWER_DCLIMITS_NEGLIMIT_OFFSET.
Correct the name in the header file.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
| -rw-r--r-- | arch/arm/include/asm/arch-mxs/regs-power.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/arm/include/asm/arch-mxs/regs-power.h b/arch/arm/include/asm/arch-mxs/regs-power.h index 3c98cce20..257ee88e8 100644 --- a/arch/arm/include/asm/arch-mxs/regs-power.h +++ b/arch/arm/include/asm/arch-mxs/regs-power.h @@ -268,7 +268,7 @@ struct mxs_power_regs {  #define	POWER_DCLIMITS_POSLIMIT_BUCK_MASK		(0x7f << 8)  #define	POWER_DCLIMITS_POSLIMIT_BUCK_OFFSET		8  #define	POWER_DCLIMITS_NEGLIMIT_MASK			0x7f -#define	POWER_DCLIMITS_NETLIMIT_OFFSET			0 +#define	POWER_DCLIMITS_NEGLIMIT_OFFSET			0  #define	POWER_LOOPCTRL_TOGGLE_DIF			(1 << 20)  #define	POWER_LOOPCTRL_HYST_SIGN			(1 << 19) |