diff options
author | Lily Zhang <r58066@freescale.com> | 2010-10-19 09:43:30 +0800 |
---|---|---|
committer | Lily Zhang <r58066@freescale.com> | 2010-10-19 09:47:22 +0800 |
commit | 73662d021d4af3e29e7c8c6e85c31a74c1a584ef (patch) | |
tree | fe8c63df11b349f3702ac857b3d9befdf1925227 /include/asm-arm/clock.h | |
parent | 6a49f94ff660275c7a9ed312eb635d3085a5ecb4 (diff) | |
download | u-boot-imx-73662d021d4af3e29e7c8c6e85c31a74c1a584ef.zip u-boot-imx-73662d021d4af3e29e7c8c6e85c31a74c1a584ef.tar.gz u-boot-imx-73662d021d4af3e29e7c8c6e85c31a74c1a584ef.tar.bz2 |
ENGR00132758 correct NFC_CLK definition
This patch is used to fix the issue caused by ENGR00132709.
NFC_CLK definition should be used in cmd_clk interface.
MXC_NFC_CLK should be used as internal clock name.
Signed-off-by: Lily Zhang <r58066@freescale.com>
Diffstat (limited to 'include/asm-arm/clock.h')
-rw-r--r-- | include/asm-arm/clock.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-arm/clock.h b/include/asm-arm/clock.h index 41f8c8c..fe2813e 100644 --- a/include/asm-arm/clock.h +++ b/include/asm-arm/clock.h @@ -34,7 +34,8 @@ enum { UART_CLK, CSPI_CLK, DDR_CLK, - ALL_CLK + NFC_CLK, + ALL_CLK, }; int clk_config(u32 ref, u32 freq, u32 clk_type); |