* [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq
@ 2015-08-25 5:59 Suriyan Ramasami
2015-08-25 7:33 ` Heiko Schocher
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Suriyan Ramasami @ 2015-08-25 5:59 UTC (permalink / raw)
To: u-boot
Build without CONFIG_SPL_SERIAL_SUPPORT does not print the cpu freq.
Booting an odroid U3 board, one sees this:
CPU: Exynos4412 @ GHz
instead of:
CPU: Exynos4412 @ 1 GHz
This change was done to get rid of compiler warnings related to the
unused variable 'n' when CONFIG_SPL_SERIAL_SUPPORT is not defined in an
SPL build. Example board: smartweb
Signed-off-by: Suriyan Ramasami <suriyan.r@gmail.com>
---
v2:
* Get rid of variable 'n' altogether
v1:
* Remove #ifdef CONFIG_SPL_SERIAL_SUPPORT
lib/display_options.c | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/lib/display_options.c b/lib/display_options.c
index df134cd..83ea4de 100644
--- a/lib/display_options.c
+++ b/lib/display_options.c
@@ -26,9 +26,6 @@ int display_options (void)
void print_freq(uint64_t freq, const char *s)
{
unsigned long m = 0;
-#if defined(CONFIG_SPL_SERIAL_SUPPORT)
- unsigned long n;
-#endif
uint32_t f;
static const char names[] = {'G', 'M', 'K'};
unsigned long d = 1e9;
@@ -48,9 +45,6 @@ void print_freq(uint64_t freq, const char *s)
}
f = do_div(freq, d);
-#if defined(CONFIG_SPL_SERIAL_SUPPORT)
- n = freq;
-#endif
/* If there's a remainder, show the first few digits */
if (f) {
@@ -63,9 +57,7 @@ void print_freq(uint64_t freq, const char *s)
m = (m / 10) + (m % 100 >= 50);
}
-#if defined(CONFIG_SPL_SERIAL_SUPPORT)
- printf("%lu", n);
-#endif
+ printf("%lu", (unsigned long) freq);
if (m)
printf(".%ld", m);
printf(" %cHz%s", c, s);
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq
2015-08-25 5:59 [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq Suriyan Ramasami
@ 2015-08-25 7:33 ` Heiko Schocher
2015-08-25 15:47 ` Joe Hershberger
2015-08-28 21:05 ` [U-Boot] [U-Boot,v2,1/1] " Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Heiko Schocher @ 2015-08-25 7:33 UTC (permalink / raw)
To: u-boot
Hello Suriyan,
Am 25.08.2015 um 07:59 schrieb Suriyan Ramasami:
> Build without CONFIG_SPL_SERIAL_SUPPORT does not print the cpu freq.
> Booting an odroid U3 board, one sees this:
> CPU: Exynos4412 @ GHz
> instead of:
> CPU: Exynos4412 @ 1 GHz
>
> This change was done to get rid of compiler warnings related to the
> unused variable 'n' when CONFIG_SPL_SERIAL_SUPPORT is not defined in an
> SPL build. Example board: smartweb
>
> Signed-off-by: Suriyan Ramasami <suriyan.r@gmail.com>
> ---
>
> v2:
> * Get rid of variable 'n' altogether
>
> v1:
> * Remove #ifdef CONFIG_SPL_SERIAL_SUPPORT
>
> lib/display_options.c | 10 +---------
> 1 file changed, 1 insertion(+), 9 deletions(-)
Thanks!
Acked-by: Heiko Schocher<hs@denx.de>
bye,
Heiko
>
> diff --git a/lib/display_options.c b/lib/display_options.c
> index df134cd..83ea4de 100644
> --- a/lib/display_options.c
> +++ b/lib/display_options.c
> @@ -26,9 +26,6 @@ int display_options (void)
> void print_freq(uint64_t freq, const char *s)
> {
> unsigned long m = 0;
> -#if defined(CONFIG_SPL_SERIAL_SUPPORT)
> - unsigned long n;
> -#endif
> uint32_t f;
> static const char names[] = {'G', 'M', 'K'};
> unsigned long d = 1e9;
> @@ -48,9 +45,6 @@ void print_freq(uint64_t freq, const char *s)
> }
>
> f = do_div(freq, d);
> -#if defined(CONFIG_SPL_SERIAL_SUPPORT)
> - n = freq;
> -#endif
>
> /* If there's a remainder, show the first few digits */
> if (f) {
> @@ -63,9 +57,7 @@ void print_freq(uint64_t freq, const char *s)
> m = (m / 10) + (m % 100 >= 50);
> }
>
> -#if defined(CONFIG_SPL_SERIAL_SUPPORT)
> - printf("%lu", n);
> -#endif
> + printf("%lu", (unsigned long) freq);
> if (m)
> printf(".%ld", m);
> printf(" %cHz%s", c, s);
>
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq
2015-08-25 5:59 [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq Suriyan Ramasami
2015-08-25 7:33 ` Heiko Schocher
@ 2015-08-25 15:47 ` Joe Hershberger
2015-08-28 21:05 ` [U-Boot] [U-Boot,v2,1/1] " Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Joe Hershberger @ 2015-08-25 15:47 UTC (permalink / raw)
To: u-boot
On Tue, Aug 25, 2015 at 12:59 AM, Suriyan Ramasami <suriyan.r@gmail.com> wrote:
> Build without CONFIG_SPL_SERIAL_SUPPORT does not print the cpu freq.
> Booting an odroid U3 board, one sees this:
> CPU: Exynos4412 @ GHz
> instead of:
> CPU: Exynos4412 @ 1 GHz
>
> This change was done to get rid of compiler warnings related to the
> unused variable 'n' when CONFIG_SPL_SERIAL_SUPPORT is not defined in an
> SPL build. Example board: smartweb
>
> Signed-off-by: Suriyan Ramasami <suriyan.r@gmail.com>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [U-Boot,v2,1/1] lib/display_options: Fix print_freq
2015-08-25 5:59 [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq Suriyan Ramasami
2015-08-25 7:33 ` Heiko Schocher
2015-08-25 15:47 ` Joe Hershberger
@ 2015-08-28 21:05 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2015-08-28 21:05 UTC (permalink / raw)
To: u-boot
On Mon, Aug 24, 2015 at 10:59:09PM -0700, Suriyan Ramasami wrote:
> Build without CONFIG_SPL_SERIAL_SUPPORT does not print the cpu freq.
> Booting an odroid U3 board, one sees this:
> CPU: Exynos4412 @ GHz
> instead of:
> CPU: Exynos4412 @ 1 GHz
>
> This change was done to get rid of compiler warnings related to the
> unused variable 'n' when CONFIG_SPL_SERIAL_SUPPORT is not defined in an
> SPL build. Example board: smartweb
>
> Signed-off-by: Suriyan Ramasami <suriyan.r@gmail.com>
> Acked-by: Heiko Schocher<hs@denx.de>
> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150828/8f3e793c/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-08-28 21:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-25 5:59 [U-Boot] [PATCH v2 1/1] lib/display_options: Fix print_freq Suriyan Ramasami
2015-08-25 7:33 ` Heiko Schocher
2015-08-25 15:47 ` Joe Hershberger
2015-08-28 21:05 ` [U-Boot] [U-Boot,v2,1/1] " Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox