Commit b9c87663eead64c767e72a373ae6f8a94bead459
Committed by
Greg Kroah-Hartman
1 parent
b9c3aab315
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
USB: mos7840: Fix compilation of usb serial driver
The __devinitconst section can't be referenced from usb_serial_device structure. Thus removed it as it done in other mos* device drivers. Error itself: WARNING: drivers/usb/serial/mos7840.o(.data+0x8): Section mismatch in reference from the variable moschip7840_4port_device to the variable .devinit.rodata:id_table The variable moschip7840_4port_device references the variable __devinitconst id_table [v2] no attach now Signed-off-by: Tony Zelenoff <antonz@parallels.com> Cc: stable <stable@vger.kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
drivers/usb/serial/mos7840.c
... | ... | @@ -190,7 +190,7 @@ |
190 | 190 | |
191 | 191 | static int device_type; |
192 | 192 | |
193 | -static const struct usb_device_id id_table[] __devinitconst = { | |
193 | +static const struct usb_device_id id_table[] = { | |
194 | 194 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)}, |
195 | 195 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)}, |
196 | 196 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7810)}, |