Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xcap-capability-linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xcap
xcap-capability-linux
Commits
d0ee0ebe
Commit
d0ee0ebe
authored
14 years ago
by
John W. Linville
Browse files
Options
Downloads
Patches
Plain Diff
ath9k: declare MODULE_FIRMWARE for ath9k_htc
Signed-off-by:
John W. Linville
<
linville@tuxdriver.com
>
parent
25ac8b0d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/net/wireless/ath/ath9k/hif_usb.c
+12
-3
12 additions, 3 deletions
drivers/net/wireless/ath/ath9k/hif_usb.c
with
12 additions
and
3 deletions
drivers/net/wireless/ath/ath9k/hif_usb.c
+
12
−
3
View file @
d0ee0ebe
...
@@ -16,6 +16,15 @@
...
@@ -16,6 +16,15 @@
#include
"htc.h"
#include
"htc.h"
/* identify firmware images */
#define FIRMWARE_AR7010 "ar7010.fw"
#define FIRMWARE_AR7010_1_1 "ar7010_1_1.fw"
#define FIRMWARE_AR9271 "ar9271.fw"
MODULE_FIRMWARE
(
FIRMWARE_AR7010
);
MODULE_FIRMWARE
(
FIRMWARE_AR7010_1_1
);
MODULE_FIRMWARE
(
FIRMWARE_AR9271
);
static
struct
usb_device_id
ath9k_hif_usb_ids
[]
=
{
static
struct
usb_device_id
ath9k_hif_usb_ids
[]
=
{
{
USB_DEVICE
(
0x0cf3
,
0x9271
)
},
/* Atheros */
{
USB_DEVICE
(
0x0cf3
,
0x9271
)
},
/* Atheros */
{
USB_DEVICE
(
0x0cf3
,
0x1006
)
},
/* Atheros */
{
USB_DEVICE
(
0x0cf3
,
0x1006
)
},
/* Atheros */
...
@@ -890,12 +899,12 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface,
...
@@ -890,12 +899,12 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface,
case
0x7010
:
case
0x7010
:
case
0x9018
:
case
0x9018
:
if
(
le16_to_cpu
(
udev
->
descriptor
.
bcdDevice
)
==
0x0202
)
if
(
le16_to_cpu
(
udev
->
descriptor
.
bcdDevice
)
==
0x0202
)
hif_dev
->
fw_name
=
"ar
7010_1_1
.fw"
;
hif_dev
->
fw_name
=
FIRMWARE_AR
7010_1_1
;
else
else
hif_dev
->
fw_name
=
"ar7010.fw"
;
hif_dev
->
fw_name
=
FIRMWARE_AR7010
;
break
;
break
;
default:
default:
hif_dev
->
fw_name
=
"ar9271.fw"
;
hif_dev
->
fw_name
=
FIRMWARE_AR9271
;
break
;
break
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment