Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Force feedback support for various HID compliant devices by ThrustMaster: |
| 4 | * ThrustMaster FireStorm Dual Power 2 |
| 5 | * and possibly others whose device ids haven't been added. |
| 6 | * |
| 7 | * Modified to support ThrustMaster devices by Zinx Verituse |
| 8 | * on 2003-01-25 from the Logitech force feedback driver, |
| 9 | * which is by Johann Deneux. |
| 10 | * |
| 11 | * Copyright (c) 2003 Zinx Verituse <zinx@epicsol.org> |
| 12 | * Copyright (c) 2002 Johann Deneux |
| 13 | */ |
| 14 | |
| 15 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
| 17 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 18 | #include <linux/hid.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/input.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Paul Gortmaker | 8f86a2c | 2011-07-03 13:39:48 -0400 | [diff] [blame] | 21 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 23 | #include "hid-ids.h" |
| 24 | |
Ilya Trukhanov | 65f11c7 | 2019-07-02 13:37:16 +0300 | [diff] [blame] | 25 | #define THRUSTMASTER_DEVICE_ID_2_IN_1_DT 0xb320 |
| 26 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 27 | static const signed short ff_rumble[] = { |
| 28 | FF_RUMBLE, |
| 29 | -1 |
| 30 | }; |
| 31 | |
| 32 | static const signed short ff_joystick[] = { |
| 33 | FF_CONSTANT, |
| 34 | -1 |
| 35 | }; |
| 36 | |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 37 | #ifdef CONFIG_THRUSTMASTER_FF |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 38 | |
| 39 | /* Usages for thrustmaster devices I know about */ |
| 40 | #define THRUSTMASTER_USAGE_FF (HID_UP_GENDESK | 0xbb) |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct tmff_device { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | struct hid_report *report; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 44 | struct hid_field *ff_field; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 47 | /* Changes values from 0 to 0xffff into values from minimum to maximum */ |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 48 | static inline int tmff_scale_u16(unsigned int in, int minimum, int maximum) |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 49 | { |
| 50 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 52 | ret = (in * (maximum - minimum) / 0xffff) + minimum; |
| 53 | if (ret < minimum) |
| 54 | return minimum; |
| 55 | if (ret > maximum) |
| 56 | return maximum; |
| 57 | return ret; |
| 58 | } |
| 59 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 60 | /* Changes values from -0x80 to 0x7f into values from minimum to maximum */ |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 61 | static inline int tmff_scale_s8(int in, int minimum, int maximum) |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 62 | { |
| 63 | int ret; |
| 64 | |
| 65 | ret = (((in + 0x80) * (maximum - minimum)) / 0xff) + minimum; |
| 66 | if (ret < minimum) |
| 67 | return minimum; |
| 68 | if (ret > maximum) |
| 69 | return maximum; |
| 70 | return ret; |
| 71 | } |
| 72 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 73 | static int tmff_play(struct input_dev *dev, void *data, |
| 74 | struct ff_effect *effect) |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 75 | { |
Dmitry Torokhov | e071298 | 2007-05-09 10:17:31 +0200 | [diff] [blame] | 76 | struct hid_device *hid = input_get_drvdata(dev); |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 77 | struct tmff_device *tmff = data; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 78 | struct hid_field *ff_field = tmff->ff_field; |
| 79 | int x, y; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 80 | int left, right; /* Rumbling */ |
| 81 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 82 | switch (effect->type) { |
| 83 | case FF_CONSTANT: |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 84 | x = tmff_scale_s8(effect->u.ramp.start_level, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 85 | ff_field->logical_minimum, |
| 86 | ff_field->logical_maximum); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 87 | y = tmff_scale_s8(effect->u.ramp.end_level, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 88 | ff_field->logical_minimum, |
| 89 | ff_field->logical_maximum); |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 90 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 91 | dbg_hid("(x, y)=(%04x, %04x)\n", x, y); |
| 92 | ff_field->value[0] = x; |
| 93 | ff_field->value[1] = y; |
Benjamin Tissoires | d8814272 | 2013-02-25 11:31:46 +0100 | [diff] [blame] | 94 | hid_hw_request(hid, tmff->report, HID_REQ_SET_REPORT); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 95 | break; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 96 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 97 | case FF_RUMBLE: |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 98 | left = tmff_scale_u16(effect->u.rumble.weak_magnitude, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 99 | ff_field->logical_minimum, |
| 100 | ff_field->logical_maximum); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 101 | right = tmff_scale_u16(effect->u.rumble.strong_magnitude, |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 102 | ff_field->logical_minimum, |
| 103 | ff_field->logical_maximum); |
| 104 | |
Ilya Trukhanov | 65f11c7 | 2019-07-02 13:37:16 +0300 | [diff] [blame] | 105 | /* 2-in-1 strong motor is left */ |
chiminghao | 415e701 | 2021-11-09 08:26:10 +0000 | [diff] [blame] | 106 | if (hid->product == THRUSTMASTER_DEVICE_ID_2_IN_1_DT) |
| 107 | swap(left, right); |
Ilya Trukhanov | 65f11c7 | 2019-07-02 13:37:16 +0300 | [diff] [blame] | 108 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 109 | dbg_hid("(left,right)=(%08x, %08x)\n", left, right); |
| 110 | ff_field->value[0] = left; |
| 111 | ff_field->value[1] = right; |
Benjamin Tissoires | d8814272 | 2013-02-25 11:31:46 +0100 | [diff] [blame] | 112 | hid_hw_request(hid, tmff->report, HID_REQ_SET_REPORT); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 113 | break; |
| 114 | } |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 115 | return 0; |
| 116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 118 | static int tmff_init(struct hid_device *hid, const signed short *ff_bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 120 | struct tmff_device *tmff; |
Li Zefan | 3ba5619 | 2007-11-14 11:31:05 +0100 | [diff] [blame] | 121 | struct hid_report *report; |
| 122 | struct list_head *report_list; |
Alan Stern | d9d4b1e | 2019-10-03 14:53:59 -0400 | [diff] [blame] | 123 | struct hid_input *hidinput; |
| 124 | struct input_dev *input_dev; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 125 | int error; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 126 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Alan Stern | d9d4b1e | 2019-10-03 14:53:59 -0400 | [diff] [blame] | 128 | if (list_empty(&hid->inputs)) { |
| 129 | hid_err(hid, "no inputs found\n"); |
| 130 | return -ENODEV; |
| 131 | } |
| 132 | hidinput = list_entry(hid->inputs.next, struct hid_input, list); |
| 133 | input_dev = hidinput->input; |
| 134 | |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 135 | tmff = kzalloc(sizeof(struct tmff_device), GFP_KERNEL); |
| 136 | if (!tmff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | return -ENOMEM; |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* Find the report to use */ |
Li Zefan | 3ba5619 | 2007-11-14 11:31:05 +0100 | [diff] [blame] | 140 | report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list; |
| 141 | list_for_each_entry(report, report_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | int fieldnum; |
| 143 | |
| 144 | for (fieldnum = 0; fieldnum < report->maxfield; ++fieldnum) { |
| 145 | struct hid_field *field = report->field[fieldnum]; |
| 146 | |
| 147 | if (field->maxusage <= 0) |
| 148 | continue; |
| 149 | |
| 150 | switch (field->usage[0].hid) { |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 151 | case THRUSTMASTER_USAGE_FF: |
| 152 | if (field->report_count < 2) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 153 | hid_warn(hid, "ignoring FF field with report_count < 2\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | continue; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 155 | } |
| 156 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 157 | if (field->logical_maximum == |
| 158 | field->logical_minimum) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 159 | hid_warn(hid, "ignoring FF field with logical_maximum == logical_minimum\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 160 | continue; |
| 161 | } |
| 162 | |
| 163 | if (tmff->report && tmff->report != report) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 164 | hid_warn(hid, "ignoring FF field in other report\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 165 | continue; |
| 166 | } |
| 167 | |
| 168 | if (tmff->ff_field && tmff->ff_field != field) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 169 | hid_warn(hid, "ignoring duplicate FF field\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 170 | continue; |
| 171 | } |
| 172 | |
| 173 | tmff->report = report; |
| 174 | tmff->ff_field = field; |
| 175 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 176 | for (i = 0; ff_bits[i] >= 0; i++) |
| 177 | set_bit(ff_bits[i], input_dev->ffbit); |
| 178 | |
| 179 | break; |
| 180 | |
| 181 | default: |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 182 | hid_warn(hid, "ignoring unknown output usage %08x\n", |
| 183 | field->usage[0].hid); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 184 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 189 | if (!tmff->report) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 190 | hid_err(hid, "can't find FF field in output reports\n"); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 191 | error = -ENODEV; |
| 192 | goto fail; |
Anssi Hannula | dc76c91 | 2006-07-19 01:40:55 -0400 | [diff] [blame] | 193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 195 | error = input_ff_create_memless(input_dev, tmff, tmff_play); |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 196 | if (error) |
| 197 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 199 | hid_info(hid, "force feedback for ThrustMaster devices by Zinx Verituse <zinx@epicsol.org>\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | return 0; |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 201 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 202 | fail: |
Dmitry Torokhov | b27c959 | 2007-07-30 14:56:26 +0200 | [diff] [blame] | 203 | kfree(tmff); |
| 204 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 206 | #else |
| 207 | static inline int tmff_init(struct hid_device *hid, const signed short *ff_bits) |
| 208 | { |
| 209 | return 0; |
| 210 | } |
| 211 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 213 | static int tm_probe(struct hid_device *hdev, const struct hid_device_id *id) |
| 214 | { |
| 215 | int ret; |
| 216 | |
| 217 | ret = hid_parse(hdev); |
| 218 | if (ret) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 219 | hid_err(hdev, "parse failed\n"); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 220 | goto err; |
| 221 | } |
| 222 | |
| 223 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF); |
| 224 | if (ret) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 225 | hid_err(hdev, "hw start failed\n"); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 226 | goto err; |
| 227 | } |
| 228 | |
| 229 | tmff_init(hdev, (void *)id->driver_data); |
| 230 | |
| 231 | return 0; |
| 232 | err: |
| 233 | return ret; |
| 234 | } |
| 235 | |
| 236 | static const struct hid_device_id tm_devices[] = { |
| 237 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300), |
| 238 | .driver_data = (unsigned long)ff_rumble }, |
Ruben Aos Garralda | 7a84b13 | 2009-06-29 09:41:29 +0200 | [diff] [blame] | 239 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304), /* FireStorm Dual Power 2 (and 3) */ |
| 240 | .driver_data = (unsigned long)ff_rumble }, |
Ilya Trukhanov | 65f11c7 | 2019-07-02 13:37:16 +0300 | [diff] [blame] | 241 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, THRUSTMASTER_DEVICE_ID_2_IN_1_DT), /* Dual Trigger 2-in-1 */ |
| 242 | .driver_data = (unsigned long)ff_rumble }, |
Ruben Aos Garralda | 7a84b13 | 2009-06-29 09:41:29 +0200 | [diff] [blame] | 243 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb323), /* Dual Trigger 3-in-1 (PC Mode) */ |
| 244 | .driver_data = (unsigned long)ff_rumble }, |
| 245 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb324), /* Dual Trigger 3-in-1 (PS3 Mode) */ |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 246 | .driver_data = (unsigned long)ff_rumble }, |
Viktor Chapliev | 1477edb | 2017-11-07 11:13:16 +0300 | [diff] [blame] | 247 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb605), /* NASCAR PRO FF2 Wheel */ |
| 248 | .driver_data = (unsigned long)ff_joystick }, |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 249 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb651), /* FGT Rumble Force Wheel */ |
| 250 | .driver_data = (unsigned long)ff_rumble }, |
Markus Rathgeb | 3ee8f0a | 2010-03-13 17:29:43 +0100 | [diff] [blame] | 251 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb653), /* RGT Force Feedback CLUTCH Raging Wheel */ |
| 252 | .driver_data = (unsigned long)ff_joystick }, |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 253 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb654), /* FGT Force Feedback Wheel */ |
| 254 | .driver_data = (unsigned long)ff_joystick }, |
Simon Wood | d65c376 | 2010-11-29 17:41:23 +0100 | [diff] [blame] | 255 | { HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb65a), /* F430 Force Feedback Wheel */ |
| 256 | .driver_data = (unsigned long)ff_joystick }, |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 257 | { } |
| 258 | }; |
| 259 | MODULE_DEVICE_TABLE(hid, tm_devices); |
| 260 | |
| 261 | static struct hid_driver tm_driver = { |
| 262 | .name = "thrustmaster", |
| 263 | .id_table = tm_devices, |
| 264 | .probe = tm_probe, |
| 265 | }; |
H Hartley Sweeten | f425458 | 2012-12-17 15:28:26 -0700 | [diff] [blame] | 266 | module_hid_driver(tm_driver); |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 267 | |
Jiri Slaby | 10e41a7 | 2008-09-18 12:23:31 +0200 | [diff] [blame] | 268 | MODULE_LICENSE("GPL"); |