vserver 2.0 rc7
[linux-2.6.git] / drivers / input / serio / i8042.h
index 500112b..1383503 100644 (file)
 
 /*
  * Expected maximum internal i8042 buffer size. This is used for flushing
- * the i8042 buffers. 32 should be more than enough.
+ * the i8042 buffers.
  */
 
-#define I8042_BUFFER_SIZE      32
+#define I8042_BUFFER_SIZE      16
 
 /*
  * Number of AUX ports on controllers supporting active multiplexing
  */
 
 #ifdef DEBUG
-static unsigned long i8042_start;
-#define dbg_init() do { i8042_start = jiffies; } while (0)
+static unsigned long i8042_start_time;
+#define dbg_init() do { i8042_start_time = jiffies; } while (0)
 #define dbg(format, arg...)                                                    \
        do {                                                                    \
                if (i8042_debug)                                                \
                        printk(KERN_DEBUG __FILE__ ": " format " [%d]\n" ,      \
-                               ## arg, (int) (jiffies - i8042_start));         \
+                               ## arg, (int) (jiffies - i8042_start_time));    \
        } while (0)
 #else
 #define dbg_init() do { } while (0)