Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
f9fd2394
Commit
f9fd2394
authored
Jan 23, 2010
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'linux-2.6.33.y' of
git://git.kernel.org/pub/scm/linux/kernel/git/inaky/wimax
parents
6be32571
b8112469
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
drivers/net/wimax/i2400m/i2400m-usb.h
drivers/net/wimax/i2400m/i2400m-usb.h
+2
-0
drivers/net/wimax/i2400m/usb.c
drivers/net/wimax/i2400m/usb.c
+11
-1
No files found.
drivers/net/wimax/i2400m/i2400m-usb.h
View file @
f9fd2394
...
@@ -151,6 +151,7 @@ enum {
...
@@ -151,6 +151,7 @@ enum {
/* Device IDs */
/* Device IDs */
USB_DEVICE_ID_I6050
=
0x0186
,
USB_DEVICE_ID_I6050
=
0x0186
,
USB_DEVICE_ID_I6050_2
=
0x0188
,
};
};
...
@@ -234,6 +235,7 @@ struct i2400mu {
...
@@ -234,6 +235,7 @@ struct i2400mu {
u8
rx_size_auto_shrink
;
u8
rx_size_auto_shrink
;
struct
dentry
*
debugfs_dentry
;
struct
dentry
*
debugfs_dentry
;
unsigned
i6050
:
1
;
/* 1 if this is a 6050 based SKU */
};
};
...
...
drivers/net/wimax/i2400m/usb.c
View file @
f9fd2394
...
@@ -478,7 +478,16 @@ int i2400mu_probe(struct usb_interface *iface,
...
@@ -478,7 +478,16 @@ int i2400mu_probe(struct usb_interface *iface,
i2400m
->
bus_bm_wait_for_ack
=
i2400mu_bus_bm_wait_for_ack
;
i2400m
->
bus_bm_wait_for_ack
=
i2400mu_bus_bm_wait_for_ack
;
i2400m
->
bus_bm_mac_addr_impaired
=
0
;
i2400m
->
bus_bm_mac_addr_impaired
=
0
;
if
(
id
->
idProduct
==
USB_DEVICE_ID_I6050
)
{
switch
(
id
->
idProduct
)
{
case
USB_DEVICE_ID_I6050
:
case
USB_DEVICE_ID_I6050_2
:
i2400mu
->
i6050
=
1
;
break
;
default:
break
;
}
if
(
i2400mu
->
i6050
)
{
i2400m
->
bus_fw_names
=
i2400mu_bus_fw_names_6050
;
i2400m
->
bus_fw_names
=
i2400mu_bus_fw_names_6050
;
i2400mu
->
endpoint_cfg
.
bulk_out
=
0
;
i2400mu
->
endpoint_cfg
.
bulk_out
=
0
;
i2400mu
->
endpoint_cfg
.
notification
=
3
;
i2400mu
->
endpoint_cfg
.
notification
=
3
;
...
@@ -719,6 +728,7 @@ int i2400mu_post_reset(struct usb_interface *iface)
...
@@ -719,6 +728,7 @@ int i2400mu_post_reset(struct usb_interface *iface)
static
static
struct
usb_device_id
i2400mu_id_table
[]
=
{
struct
usb_device_id
i2400mu_id_table
[]
=
{
{
USB_DEVICE
(
0x8086
,
USB_DEVICE_ID_I6050
)
},
{
USB_DEVICE
(
0x8086
,
USB_DEVICE_ID_I6050
)
},
{
USB_DEVICE
(
0x8086
,
USB_DEVICE_ID_I6050_2
)
},
{
USB_DEVICE
(
0x8086
,
0x0181
)
},
{
USB_DEVICE
(
0x8086
,
0x0181
)
},
{
USB_DEVICE
(
0x8086
,
0x1403
)
},
{
USB_DEVICE
(
0x8086
,
0x1403
)
},
{
USB_DEVICE
(
0x8086
,
0x1405
)
},
{
USB_DEVICE
(
0x8086
,
0x1405
)
},
...
...
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