Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
aad4d213
Commit
aad4d213
authored
Jul 29, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: remove improper use of devinitdata markings for device ids.
parent
d1df71f8
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
drivers/usb/gadget/net2280.c
drivers/usb/gadget/net2280.c
+1
-1
drivers/usb/host/ehci-hcd.c
drivers/usb/host/ehci-hcd.c
+1
-1
drivers/usb/host/ohci-pci.c
drivers/usb/host/ohci-pci.c
+1
-1
drivers/usb/host/uhci-hcd.c
drivers/usb/host/uhci-hcd.c
+1
-1
drivers/usb/misc/emi26.c
drivers/usb/misc/emi26.c
+2
-2
drivers/usb/net/ax8817x.c
drivers/usb/net/ax8817x.c
+1
-1
drivers/usb/serial/ftdi_sio.c
drivers/usb/serial/ftdi_sio.c
+1
-1
No files found.
drivers/usb/gadget/net2280.c
View file @
aad4d213
...
...
@@ -2664,7 +2664,7 @@ static int net2280_probe (struct pci_dev *pdev, const struct pci_device_id *id)
/*-------------------------------------------------------------------------*/
static
struct
pci_device_id
__devinitdata
pci_ids
[]
=
{
{
static
struct
pci_device_id
pci_ids
[]
=
{
{
.
class
=
((
PCI_CLASS_SERIAL_USB
<<
8
)
|
0xfe
),
.
class_mask
=
~
0
,
.
vendor
=
0x17cc
,
...
...
drivers/usb/host/ehci-hcd.c
View file @
aad4d213
...
...
@@ -974,7 +974,7 @@ static const struct hc_driver ehci_driver = {
/* EHCI spec says PCI is required. */
/* PCI driver selection metadata; PCI hotplugging uses this */
static
struct
pci_device_id
__devinitdata
pci_ids
[]
=
{
{
static
struct
pci_device_id
pci_ids
[]
=
{
{
/* handle any USB 2.0 EHCI controller */
...
...
drivers/usb/host/ohci-pci.c
View file @
aad4d213
...
...
@@ -351,7 +351,7 @@ static const struct hc_driver ohci_pci_hc_driver = {
/*-------------------------------------------------------------------------*/
static
const
struct
pci_device_id
__devinitdata
pci_ids
[]
=
{
{
static
const
struct
pci_device_id
pci_ids
[]
=
{
{
/* handle any USB OHCI controller */
.
class
=
(
PCI_CLASS_SERIAL_USB
<<
8
)
|
0x10
,
...
...
drivers/usb/host/uhci-hcd.c
View file @
aad4d213
...
...
@@ -2503,7 +2503,7 @@ static const struct hc_driver uhci_driver = {
.
hub_control
=
uhci_hub_control
,
};
static
const
struct
pci_device_id
__devinitdata
uhci_pci_ids
[]
=
{
{
static
const
struct
pci_device_id
uhci_pci_ids
[]
=
{
{
/* handle any USB UHCI controller */
.
class
=
((
PCI_CLASS_SERIAL_USB
<<
8
)
|
0x00
),
...
...
drivers/usb/misc/emi26.c
View file @
aad4d213
...
...
@@ -201,7 +201,7 @@ static int emi26_load_firmware (struct usb_device *dev)
return
err
;
}
static
__devinitdata
struct
usb_device_id
id_table
[]
=
{
static
struct
usb_device_id
id_table
[]
=
{
{
USB_DEVICE
(
EMI26_VENDOR_ID
,
EMI26_PRODUCT_ID
)
},
{
}
/* Terminating entry */
};
...
...
@@ -231,7 +231,7 @@ struct usb_driver emi26_driver = {
.
name
=
"emi26 - firmware loader"
,
.
probe
=
emi26_probe
,
.
disconnect
=
emi26_disconnect
,
.
id_table
=
NULL
,
.
id_table
=
id_table
,
};
static
int
__init
emi26_init
(
void
)
...
...
drivers/usb/net/ax8817x.c
View file @
aad4d213
...
...
@@ -158,7 +158,7 @@ struct ax8817x_info {
};
const
struct
usb_device_id
ax8817x_id_table
[]
__devinitdata
=
{
const
struct
usb_device_id
ax8817x_id_table
[]
=
{
/* Linksys USB200M */
{
USB_DEVICE
(
0x077b
,
0x2226
),
driver_info
:
0x00130103
},
/* Hawking UF200, TRENDnet TU2-ET100 */
...
...
drivers/usb/serial/ftdi_sio.c
View file @
aad4d213
...
...
@@ -392,7 +392,7 @@ static struct usb_device_id id_table_HE_TIRA1 [] = {
};
static
__devinitdata
struct
usb_device_id
id_table_combined
[]
=
{
static
struct
usb_device_id
id_table_combined
[]
=
{
{
USB_DEVICE
(
FTDI_VID
,
FTDI_SIO_PID
)
},
{
USB_DEVICE
(
FTDI_VID
,
FTDI_8U232AM_PID
)
},
{
USB_DEVICE
(
FTDI_VID
,
FTDI_RELAIS_PID
)
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment