[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20120912233820.931889469@linuxfoundation.org>
Date: Wed, 12 Sep 2012 16:39:21 -0700
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: linux-kernel@...r.kernel.org, stable@...r.kernel.org
Cc: Greg KH <gregkh@...uxfoundation.org>,
Fengguang Wu <fengguang.wu@...el.com>,
Bjørn Mork <bjorn@...k.no>,
Mauro Carvalho Chehab <mchehab@...radead.org>,
Michael Krufky <mkrufky@...uxtv.org>,
Paul Gortmaker <paul.gortmaker@...driver.com>,
Doron Cohen <doronc@...no-ms.com>
Subject: [ 31/46] USB: smsusb: remove __devinit* from the struct usb_device_id table
From: Greg KH <gregkh@...uxfoundation.org>
3.0-stable review patch. If anyone has any objections, please let me know.
------------------
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
commit d04dbd1c0ec17a13326c8f2279399c225836a79f upstream.
This structure needs to always stick around, even if CONFIG_HOTPLUG
is disabled, otherwise we can oops when trying to probe a device that
was added after the structure is thrown away.
Thanks to Fengguang Wu and Bjørn Mork for tracking this issue down.
Reported-by: Fengguang Wu <fengguang.wu@...el.com>
Reported-by: Bjørn Mork <bjorn@...k.no>
CC: Mauro Carvalho Chehab <mchehab@...radead.org>
CC: Michael Krufky <mkrufky@...uxtv.org>
CC: Paul Gortmaker <paul.gortmaker@...driver.com>
CC: Doron Cohen <doronc@...no-ms.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
---
drivers/media/dvb/siano/smsusb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/media/dvb/siano/smsusb.c
+++ b/drivers/media/dvb/siano/smsusb.c
@@ -480,7 +480,7 @@ static int smsusb_resume(struct usb_inte
return 0;
}
-static const struct usb_device_id smsusb_id_table[] __devinitconst = {
+static const struct usb_device_id smsusb_id_table[] = {
{ USB_DEVICE(0x187f, 0x0010),
.driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
{ USB_DEVICE(0x187f, 0x0100),
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists