* [U-Boot] [PATCH] mx6: clock: Only show CSPI clock if CSPI is enabled
@ 2012-11-16 11:30 Fabio Estevam
2012-11-16 16:54 ` Dirk Behme
0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2012-11-16 11:30 UTC (permalink / raw)
To: u-boot
From: Fabio Estevam <fabio.estevam@freescale.com>
If a board does not enable CSPI, there is no need to show the CSPI clock
frequency as part of the 'clock' command.
Reported-by: Dirk Behme <dirk.behme@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
arch/arm/cpu/armv7/mx6/clock.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c
index a01d96f..a50db70 100644
--- a/arch/arm/cpu/armv7/mx6/clock.c
+++ b/arch/arm/cpu/armv7/mx6/clock.c
@@ -404,7 +404,9 @@ int do_mx6_showclocks(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
printf("\n");
printf("IPG %8d kHz\n", mxc_get_clock(MXC_IPG_CLK) / 1000);
printf("UART %8d kHz\n", mxc_get_clock(MXC_UART_CLK) / 1000);
+#ifdef CONFIG_MXC_SPI
printf("CSPI %8d kHz\n", mxc_get_clock(MXC_CSPI_CLK) / 1000);
+#endif
printf("AHB %8d kHz\n", mxc_get_clock(MXC_AHB_CLK) / 1000);
printf("AXI %8d kHz\n", mxc_get_clock(MXC_AXI_CLK) / 1000);
printf("DDR %8d kHz\n", mxc_get_clock(MXC_DDR_CLK) / 1000);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* [U-Boot] [PATCH] mx6: clock: Only show CSPI clock if CSPI is enabled
2012-11-16 11:30 [U-Boot] [PATCH] mx6: clock: Only show CSPI clock if CSPI is enabled Fabio Estevam
@ 2012-11-16 16:54 ` Dirk Behme
0 siblings, 0 replies; 2+ messages in thread
From: Dirk Behme @ 2012-11-16 16:54 UTC (permalink / raw)
To: u-boot
Am 16.11.2012 12:30, schrieb Fabio Estevam:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> If a board does not enable CSPI, there is no need to show the CSPI clock
> frequency as part of the 'clock' command.
>
> Reported-by: Dirk Behme <dirk.behme@gmail.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Dirk Behme <dirk.behme@gmail.com>
Thanks
Dirk
> ---
> arch/arm/cpu/armv7/mx6/clock.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c
> index a01d96f..a50db70 100644
> --- a/arch/arm/cpu/armv7/mx6/clock.c
> +++ b/arch/arm/cpu/armv7/mx6/clock.c
> @@ -404,7 +404,9 @@ int do_mx6_showclocks(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
> printf("\n");
> printf("IPG %8d kHz\n", mxc_get_clock(MXC_IPG_CLK) / 1000);
> printf("UART %8d kHz\n", mxc_get_clock(MXC_UART_CLK) / 1000);
> +#ifdef CONFIG_MXC_SPI
> printf("CSPI %8d kHz\n", mxc_get_clock(MXC_CSPI_CLK) / 1000);
> +#endif
> printf("AHB %8d kHz\n", mxc_get_clock(MXC_AHB_CLK) / 1000);
> printf("AXI %8d kHz\n", mxc_get_clock(MXC_AXI_CLK) / 1000);
> printf("DDR %8d kHz\n", mxc_get_clock(MXC_DDR_CLK) / 1000);
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-16 16:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-16 11:30 [U-Boot] [PATCH] mx6: clock: Only show CSPI clock if CSPI is enabled Fabio Estevam
2012-11-16 16:54 ` Dirk Behme
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox