Package: linux-kernel-headers Version: 2.6.16.20-1 Severity: normal kernel_ulong_t is defined in /usr/include/linux/input.h only if __KERNEL__ is defined, so input_device_id should be only defined under the same conditions. this patch fixes the problem:
--- input.h.orig 2006-06-05 10:18:23.000000000 -0700 +++ input.h 2006-06-11 07:13:28.000000000 -0700 @@ -796,6 +796,7 @@ #define FF_MAX 0x7f +#ifdef __KERNEL__ struct input_device_id { kernel_ulong_t flags; @@ -814,6 +815,7 @@ kernel_ulong_t driver_info; }; +#endif /* * Structure for hotplug & device<->driver matching. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]