public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] time: Fix constant size in kernel/timeconst.h
@ 2008-02-09 13:20 Johann Felix Soden
  2008-02-09 21:33 ` H. Peter Anvin
  0 siblings, 1 reply; 3+ messages in thread
From: Johann Felix Soden @ 2008-02-09 13:20 UTC (permalink / raw)
  To: Andrew Morton; +Cc: H. Peter Anvin, linux-kernel

From: Johann Felix Soden <johfel@users.sourceforge.net>

kernel/timeconst.pl generates only long sized constants in timeconst.pl
which gives this warning:

kernel/time.c: In function 'msecs_to_jiffies':
kernel/time.c:472: warning: integer constant is too large for 'long' type

unsigned long long is needed.

Signed-off-by: Johann Felix Soden <johfel@users.sourceforge.net>
CC: H. Peter Anvin <hpa@zytor.com>
---
 kernel/timeconst.pl |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/timeconst.pl b/kernel/timeconst.pl
index 62b1287..a645654 100644
--- a/kernel/timeconst.pl
+++ b/kernel/timeconst.pl
@@ -342,12 +342,12 @@ sub output($@)
 		      'USEC_TO_HZ','HZ_TO_USEC') {
 		foreach $bit (32, 64) {
 			foreach $suf ('MUL', 'ADJ', 'SHR') {
-				printf "#define %-23s %s\n",
+				printf "#define %-23s %sULL\n",
 					"${pfx}_$suf$bit", shift(@val);
 			}
 		}
 		foreach $suf ('NUM', 'DEN') {
-			printf "#define %-23s %s\n",
+			printf "#define %-23s %sULL\n",
 				"${pfx}_$suf", shift(@val);
 		}
 	}
-- 
1.5.4




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

end of thread, other threads:[~2008-02-09 22:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-09 13:20 [PATCH] time: Fix constant size in kernel/timeconst.h Johann Felix Soden
2008-02-09 21:33 ` H. Peter Anvin
2008-02-09 22:29   ` Johann Felix Soden

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox