diff options
| author | Li Yang <leoli@freescale.com> | 2010-01-07 16:00:13 +0800 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2010-01-25 22:13:26 -0600 | 
| commit | 1118cdbfeb8fc3acfe542d08703153ac188f9dbd (patch) | |
| tree | 9b51f2d16fa90a83bb90af0eb3917c3c0f6adbf3 | |
| parent | 693416fe01d324472d270ac28389022eb82c7217 (diff) | |
| download | olio-uboot-2014.01-1118cdbfeb8fc3acfe542d08703153ac188f9dbd.tar.xz olio-uboot-2014.01-1118cdbfeb8fc3acfe542d08703153ac188f9dbd.zip | |
fsl_esdhc: fix wrong clock mask
Fix typo in SYSCTL_CLOCK_MASK, which caused residual in high bits of SDCLKFS.
Signed-off-by: Jin Qing <B24347@freescale.com>
Signed-off-by: Li Yang <leoli@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
| -rw-r--r-- | include/fsl_esdhc.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/fsl_esdhc.h b/include/fsl_esdhc.h index 89b8304d5..eac6a2bd4 100644 --- a/include/fsl_esdhc.h +++ b/include/fsl_esdhc.h @@ -32,7 +32,7 @@  #define SYSCTL			0x0002e02c  #define SYSCTL_INITA		0x08000000  #define SYSCTL_TIMEOUT_MASK	0x000f0000 -#define SYSCTL_CLOCK_MASK	0x00000fff +#define SYSCTL_CLOCK_MASK	0x0000fff0  #define SYSCTL_PEREN		0x00000004  #define SYSCTL_HCKEN		0x00000002  #define SYSCTL_IPGEN		0x00000001 |