|
From: Jan-Benedict G. <jb...@us...> - 2004-11-18 21:27:42
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16620/include/asm-vax Modified Files: timex.h Log Message: - Modify typedef for cycles_t from "unsigned long" to "unsigned long long" to prevent warning (shift >= length) in drivers/random.c. This is duplicated from i386... Index: timex.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/timex.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- timex.h 20 May 2002 00:33:39 -0000 1.3 +++ timex.h 18 Nov 2004 21:27:31 -0000 1.4 @@ -13,7 +13,7 @@ (1000000/CLOCK_TICK_FACTOR) / (CLOCK_TICK_RATE/CLOCK_TICK_FACTOR)) \ << (SHIFT_SCALE-SHIFT_HZ)) / HZ) -typedef unsigned long cycles_t; +typedef unsigned long long cycles_t; extern cycles_t cacheflush_time; |