All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] arm: change tbu/l type to unsigned int
@ 2017-04-20  1:10 Peng Fan
  2017-04-20  1:10 ` [U-Boot] [PATCH 2/2] asm-generic: global_data: change timebase_l/h " Peng Fan
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Peng Fan @ 2017-04-20  1:10 UTC (permalink / raw)
  To: u-boot

Change tbu/l type to unsigned int.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
---
 arch/arm/include/asm/global_data.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
index dfcbcce..92d9c97 100644
--- a/arch/arm/include/asm/global_data.h
+++ b/arch/arm/include/asm/global_data.h
@@ -32,8 +32,8 @@ struct arch_global_data {
 #endif
 	/* "static data" needed by most of timer.c on ARM platforms */
 	unsigned long timer_rate_hz;
-	unsigned long tbu;
-	unsigned long tbl;
+	unsigned int tbu;
+	unsigned int tbl;
 	unsigned long lastinc;
 	unsigned long long timer_reset_value;
 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
-- 
2.6.6

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-05-08 13:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-20  1:10 [U-Boot] [PATCH 1/2] arm: change tbu/l type to unsigned int Peng Fan
2017-04-20  1:10 ` [U-Boot] [PATCH 2/2] asm-generic: global_data: change timebase_l/h " Peng Fan
2017-04-24  3:38   ` Simon Glass
2017-04-25 20:51     ` Peng Fan
2017-05-02 11:27       ` Simon Glass
2017-04-24  3:38 ` [U-Boot] [PATCH 1/2] arm: change tbu/l type " Simon Glass
2017-05-08  9:58 ` Peng Fan
2017-05-08 13:47   ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.