diff options
author | reinelt <> | 2004-04-12 05:14:42 +0000 |
---|---|---|
committer | reinelt <> | 2004-04-12 05:14:42 +0000 |
commit | 4927340619b87b06cc9c620d605bd9a28a4d89e8 (patch) | |
tree | a31e133ea94c58b4b45d0b913bbf4e13c272f807 /udelay.c | |
parent | e36decdb971bdf937279c1f3b7caf9003c5d71da (diff) | |
download | lcd4linux-4927340619b87b06cc9c620d605bd9a28a4d89e8.tar.gz |
[lcd4linux @ 2004-04-12 05:14:42 by reinelt]
another BIG FAT WARNING on the use of raw ports instead of ppdev
Diffstat (limited to 'udelay.c')
-rw-r--r-- | udelay.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: udelay.c,v 1.15 2004/04/12 04:56:00 reinelt Exp $ +/* $Id: udelay.c,v 1.16 2004/04/12 05:14:42 reinelt Exp $ * * short delays * @@ -22,6 +22,9 @@ * * * $Log: udelay.c,v $ + * Revision 1.16 2004/04/12 05:14:42 reinelt + * another BIG FAT WARNING on the use of raw ports instead of ppdev + * * Revision 1.15 2004/04/12 04:56:00 reinelt * emitted a BIG FAT WARNING if msr.h could not be found (and therefore * the gettimeofday() delay loop would be used) @@ -250,9 +253,9 @@ void udelay_init (void) info ("using TSC delay loop, %u ticks per microsecond", ticks_per_usec); } else #else - error ("/usr/include/asm/msr.h was missing at compile time."); - error ("Even if your CPU supports TSC, it will not be used."); - error ("You *really* should recompile LCD4linux with msr.h."); + error ("The file 'include/asm/msr.h' was missing at compile time."); + error ("Even if your CPU supports TSC, it will not be used!"); + error ("You *really* should install msr.h and recompile LCD4linux!"); #endif { |