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
Kirill Smelkov
linux
Commits
54a4fe54
Commit
54a4fe54
authored
Mar 24, 2011
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
parents
ef352e7c
d78f4b3e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
2 deletions
+7
-2
drivers/net/wireless/ath/ath9k/main.c
drivers/net/wireless/ath/ath9k/main.c
+2
-0
drivers/net/wireless/ath/ath9k/rc.c
drivers/net/wireless/ath/ath9k/rc.c
+1
-1
drivers/net/wireless/iwlwifi/iwl-agn-lib.c
drivers/net/wireless/iwlwifi/iwl-agn-lib.c
+1
-1
drivers/net/wireless/orinoco/cfg.c
drivers/net/wireless/orinoco/cfg.c
+3
-0
No files found.
drivers/net/wireless/ath/ath9k/main.c
View file @
54a4fe54
...
...
@@ -2160,6 +2160,8 @@ static void ath9k_flush(struct ieee80211_hw *hw, bool drop)
if
(
!
ath_drain_all_txq
(
sc
,
false
))
ath_reset
(
sc
,
false
);
ieee80211_wake_queues
(
hw
);
out:
ieee80211_queue_delayed_work
(
hw
,
&
sc
->
tx_complete_work
,
0
);
mutex_unlock
(
&
sc
->
mutex
);
...
...
drivers/net/wireless/ath/ath9k/rc.c
View file @
54a4fe54
...
...
@@ -1328,7 +1328,7 @@ static void ath_tx_status(void *priv, struct ieee80211_supported_band *sband,
hdr
=
(
struct
ieee80211_hdr
*
)
skb
->
data
;
fc
=
hdr
->
frame_control
;
for
(
i
=
0
;
i
<
IEEE80211_TX_MAX_RATES
;
i
++
)
{
for
(
i
=
0
;
i
<
sc
->
hw
->
max_rates
;
i
++
)
{
struct
ieee80211_tx_rate
*
rate
=
&
tx_info
->
status
.
rates
[
i
];
if
(
!
rate
->
count
)
break
;
...
...
drivers/net/wireless/iwlwifi/iwl-agn-lib.c
View file @
54a4fe54
...
...
@@ -2265,7 +2265,7 @@ signed long iwlagn_wait_notification(struct iwl_priv *priv,
int
ret
;
ret
=
wait_event_timeout
(
priv
->
_agn
.
notif_waitq
,
&
wait_entry
->
triggered
,
wait_entry
->
triggered
,
timeout
);
spin_lock_bh
(
&
priv
->
_agn
.
notif_wait_lock
);
...
...
drivers/net/wireless/orinoco/cfg.c
View file @
54a4fe54
...
...
@@ -153,6 +153,9 @@ static int orinoco_scan(struct wiphy *wiphy, struct net_device *dev,
priv
->
scan_request
=
request
;
err
=
orinoco_hw_trigger_scan
(
priv
,
request
->
ssids
);
/* On error the we aren't processing the request */
if
(
err
)
priv
->
scan_request
=
NULL
;
return
err
;
}
...
...
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