I am having problems compliling my kernel. When I type "make bzImage", I get the following error after a while:
Code:
drivers/usb/usbdrv.o(.text+0x138a4): In function `hidinput_hid_event':
: undefined reference to `input_event'
drivers/usb/usbdrv.o(.text+0x13921): In function `hidinput_hid_event':
: undefined reference to `input_event'
drivers/usb/usbdrv.o(.text+0x13995): In function `hidinput_hid_event':
: undefined reference to `input_event'
drivers/usb/usbdrv.o(.text+0x139e2): In function `hidinput_hid_event':
: undefined reference to `input_event'
drivers/usb/usbdrv.o(.text+0x13b78): In function `hidinput_connect':
: undefined reference to `input_register_device'
drivers/usb/usbdrv.o(.text+0x13c01): In function `hidinput_connect':
: undefined reference to `input_register_device'
drivers/usb/usbdrv.o(.text+0x13d35): In function `hidinput_disconnect':
: undefined reference to `input_unregister_device'
drivers/usb/usbdrv.o(.text+0x138d7): In function `hidinput_hid_event':
: undefined reference to `input_event'
make: *** [vmlinux] Error 1
I have reduced the ammount of usb items that are included in the kernel through the menuconfig with no effect. I am at a loss for what the next step is.