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
2fff58fc
Commit
2fff58fc
authored
Jul 02, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6
parents
c461a973
7b58ccfe
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
4 deletions
+15
-4
drivers/net/wireless/iwlwifi/iwl-3945.c
drivers/net/wireless/iwlwifi/iwl-3945.c
+5
-1
drivers/net/wireless/iwlwifi/iwl-4965.c
drivers/net/wireless/iwlwifi/iwl-4965.c
+5
-1
drivers/net/wireless/iwlwifi/iwl3945-base.c
drivers/net/wireless/iwlwifi/iwl3945-base.c
+2
-1
drivers/net/wireless/iwlwifi/iwl4965-base.c
drivers/net/wireless/iwlwifi/iwl4965-base.c
+2
-1
drivers/net/wireless/libertas/if_usb.c
drivers/net/wireless/libertas/if_usb.c
+1
-0
No files found.
drivers/net/wireless/iwlwifi/iwl-3945.c
View file @
2fff58fc
...
...
@@ -588,8 +588,12 @@ static void iwl3945_add_radiotap(struct iwl3945_priv *priv,
if
(
rate
==
-
1
)
iwl3945_rt
->
rt_rate
=
0
;
else
else
{
if
(
stats
->
band
==
IEEE80211_BAND_5GHZ
)
rate
+=
IWL_FIRST_OFDM_RATE
;
iwl3945_rt
->
rt_rate
=
iwl3945_rates
[
rate
].
ieee
;
}
/* antenna number */
antenna
=
phy_flags_hw
&
RX_RES_PHY_FLAGS_ANTENNA_MSK
;
...
...
drivers/net/wireless/iwlwifi/iwl-4965.c
View file @
2fff58fc
...
...
@@ -3528,8 +3528,12 @@ static void iwl4965_add_radiotap(struct iwl_priv *priv,
if
(
rate
==
-
1
)
iwl4965_rt
->
rt_rate
=
0
;
else
else
{
if
(
stats
->
band
==
IEEE80211_BAND_5GHZ
)
rate
+=
IWL_FIRST_OFDM_RATE
;
iwl4965_rt
->
rt_rate
=
iwl4965_rates
[
rate
].
ieee
;
}
/*
* "antenna number"
...
...
drivers/net/wireless/iwlwifi/iwl3945-base.c
View file @
2fff58fc
...
...
@@ -6687,7 +6687,8 @@ static int iwl3945_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
if
(
priv
->
iw_mode
==
IEEE80211_IF_TYPE_MNTR
)
{
IWL_DEBUG_MAC80211
(
"leave - monitor
\n
"
);
return
-
1
;
dev_kfree_skb_any
(
skb
);
return
0
;
}
IWL_DEBUG_TX
(
"dev->xmit(%d bytes) at rate 0x%02x
\n
"
,
skb
->
len
,
...
...
drivers/net/wireless/iwlwifi/iwl4965-base.c
View file @
2fff58fc
...
...
@@ -6237,7 +6237,8 @@ static int iwl4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
if
(
priv
->
iw_mode
==
IEEE80211_IF_TYPE_MNTR
)
{
IWL_DEBUG_MAC80211
(
"leave - monitor
\n
"
);
return
-
1
;
dev_kfree_skb_any
(
skb
);
return
0
;
}
IWL_DEBUG_TX
(
"dev->xmit(%d bytes) at rate 0x%02x
\n
"
,
skb
->
len
,
...
...
drivers/net/wireless/libertas/if_usb.c
View file @
2fff58fc
...
...
@@ -925,6 +925,7 @@ static struct usb_driver if_usb_driver = {
.
id_table
=
if_usb_table
,
.
suspend
=
if_usb_suspend
,
.
resume
=
if_usb_resume
,
.
reset_resume
=
if_usb_resume
,
};
static
int
__init
if_usb_init_module
(
void
)
...
...
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