diff options
author | Jean-François Moine <[email protected]> | 2011-05-17 03:56:09 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2011-05-21 09:32:39 -0300 |
commit | f7242d30034da3f2937fbe9eb3d17355bbff58d1 (patch) | |
tree | 0409e787332e0a07d77494e427212077061c673d | |
parent | cc90b15eb27696a5fa237897deb2fc83a1e003f1 (diff) |
[media] gspca - kinect: Remove __devinitdata
__devinit* must not be used in USB drivers.
Signed-off-by: Jean-François Moine <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/video/gspca/kinect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/kinect.c b/drivers/media/video/gspca/kinect.c index 2028c6436bbd..66671a4092e4 100644 --- a/drivers/media/video/gspca/kinect.c +++ b/drivers/media/video/gspca/kinect.c @@ -389,7 +389,7 @@ static const struct sd_desc sd_desc = { }; /* -- module initialisation -- */ -static const __devinitdata struct usb_device_id device_table[] = { +static const struct usb_device_id device_table[] = { {USB_DEVICE(0x045e, 0x02ae)}, {} }; |