summaryrefslogtreecommitdiff
path: root/xpp
diff options
context:
space:
mode:
Diffstat (limited to 'xpp')
-rw-r--r--xpp/xpp_usb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/xpp/xpp_usb.c b/xpp/xpp_usb.c
index 2c8b4a6..5caccb4 100644
--- a/xpp/xpp_usb.c
+++ b/xpp/xpp_usb.c
@@ -362,7 +362,9 @@ MODULE_DEVICE_TABLE (usb, xusb_table);
/* usb specific object needed to register this driver with the usb subsystem */
static struct usb_driver xusb_driver = {
- .owner = THIS_MODULE,
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,16)
+ .owner: THIS_MODULE,
+#endif
.name = "xpp_usb",
.probe = xusb_probe,
.disconnect = xusb_disconnect,