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
badb0295
Commit
badb0295
authored
May 02, 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
7cfd2609
16b345d8
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
17 deletions
+47
-17
drivers/net/wireless/b43/main.c
drivers/net/wireless/b43/main.c
+1
-0
drivers/net/wireless/iwlegacy/iwl-4965-tx.c
drivers/net/wireless/iwlegacy/iwl-4965-tx.c
+12
-6
drivers/net/wireless/iwlegacy/iwl-led.c
drivers/net/wireless/iwlegacy/iwl-led.c
+19
-1
drivers/net/wireless/iwlegacy/iwl4965-base.c
drivers/net/wireless/iwlegacy/iwl4965-base.c
+4
-4
drivers/net/wireless/iwlwifi/iwl-agn-tx.c
drivers/net/wireless/iwlwifi/iwl-agn-tx.c
+11
-6
No files found.
drivers/net/wireless/b43/main.c
View file @
badb0295
...
@@ -72,6 +72,7 @@ MODULE_FIRMWARE("b43/ucode11.fw");
...
@@ -72,6 +72,7 @@ MODULE_FIRMWARE("b43/ucode11.fw");
MODULE_FIRMWARE
(
"b43/ucode13.fw"
);
MODULE_FIRMWARE
(
"b43/ucode13.fw"
);
MODULE_FIRMWARE
(
"b43/ucode14.fw"
);
MODULE_FIRMWARE
(
"b43/ucode14.fw"
);
MODULE_FIRMWARE
(
"b43/ucode15.fw"
);
MODULE_FIRMWARE
(
"b43/ucode15.fw"
);
MODULE_FIRMWARE
(
"b43/ucode16_mimo.fw"
);
MODULE_FIRMWARE
(
"b43/ucode5.fw"
);
MODULE_FIRMWARE
(
"b43/ucode5.fw"
);
MODULE_FIRMWARE
(
"b43/ucode9.fw"
);
MODULE_FIRMWARE
(
"b43/ucode9.fw"
);
...
...
drivers/net/wireless/iwlegacy/iwl-4965-tx.c
View file @
badb0295
...
@@ -316,13 +316,19 @@ int iwl4965_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
...
@@ -316,13 +316,19 @@ int iwl4965_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
hdr_len
=
ieee80211_hdrlen
(
fc
);
hdr_len
=
ieee80211_hdrlen
(
fc
);
/* For management frames use broadcast id to do not break aggregation */
if
(
!
ieee80211_is_data
(
fc
))
sta_id
=
ctx
->
bcast_sta_id
;
else
{
/* Find index into station table for destination station */
/* Find index into station table for destination station */
sta_id
=
iwl_legacy_sta_id_or_broadcast
(
priv
,
ctx
,
info
->
control
.
sta
);
sta_id
=
iwl_legacy_sta_id_or_broadcast
(
priv
,
ctx
,
info
->
control
.
sta
);
if
(
sta_id
==
IWL_INVALID_STATION
)
{
if
(
sta_id
==
IWL_INVALID_STATION
)
{
IWL_DEBUG_DROP
(
priv
,
"Dropping - INVALID STATION: %pM
\n
"
,
IWL_DEBUG_DROP
(
priv
,
"Dropping - INVALID STATION: %pM
\n
"
,
hdr
->
addr1
);
hdr
->
addr1
);
goto
drop_unlock
;
goto
drop_unlock
;
}
}
}
IWL_DEBUG_TX
(
priv
,
"station Id %d
\n
"
,
sta_id
);
IWL_DEBUG_TX
(
priv
,
"station Id %d
\n
"
,
sta_id
);
...
...
drivers/net/wireless/iwlegacy/iwl-led.c
View file @
badb0295
...
@@ -48,8 +48,21 @@ module_param(led_mode, int, S_IRUGO);
...
@@ -48,8 +48,21 @@ module_param(led_mode, int, S_IRUGO);
MODULE_PARM_DESC
(
led_mode
,
"0=system default, "
MODULE_PARM_DESC
(
led_mode
,
"0=system default, "
"1=On(RF On)/Off(RF Off), 2=blinking"
);
"1=On(RF On)/Off(RF Off), 2=blinking"
);
/* Throughput OFF time(ms) ON time (ms)
* >300 25 25
* >200 to 300 40 40
* >100 to 200 55 55
* >70 to 100 65 65
* >50 to 70 75 75
* >20 to 50 85 85
* >10 to 20 95 95
* >5 to 10 110 110
* >1 to 5 130 130
* >0 to 1 167 167
* <=0 SOLID ON
*/
static
const
struct
ieee80211_tpt_blink
iwl_blink
[]
=
{
static
const
struct
ieee80211_tpt_blink
iwl_blink
[]
=
{
{
.
throughput
=
0
*
1024
-
1
,
.
blink_time
=
334
},
{
.
throughput
=
0
,
.
blink_time
=
334
},
{
.
throughput
=
1
*
1024
-
1
,
.
blink_time
=
260
},
{
.
throughput
=
1
*
1024
-
1
,
.
blink_time
=
260
},
{
.
throughput
=
5
*
1024
-
1
,
.
blink_time
=
220
},
{
.
throughput
=
5
*
1024
-
1
,
.
blink_time
=
220
},
{
.
throughput
=
10
*
1024
-
1
,
.
blink_time
=
190
},
{
.
throughput
=
10
*
1024
-
1
,
.
blink_time
=
190
},
...
@@ -101,6 +114,11 @@ static int iwl_legacy_led_cmd(struct iwl_priv *priv,
...
@@ -101,6 +114,11 @@ static int iwl_legacy_led_cmd(struct iwl_priv *priv,
if
(
priv
->
blink_on
==
on
&&
priv
->
blink_off
==
off
)
if
(
priv
->
blink_on
==
on
&&
priv
->
blink_off
==
off
)
return
0
;
return
0
;
if
(
off
==
0
)
{
/* led is SOLID_ON */
on
=
IWL_LED_SOLID
;
}
IWL_DEBUG_LED
(
priv
,
"Led blink time compensation=%u
\n
"
,
IWL_DEBUG_LED
(
priv
,
"Led blink time compensation=%u
\n
"
,
priv
->
cfg
->
base_params
->
led_compensation
);
priv
->
cfg
->
base_params
->
led_compensation
);
led_cmd
.
on
=
iwl_legacy_blink_compensation
(
priv
,
on
,
led_cmd
.
on
=
iwl_legacy_blink_compensation
(
priv
,
on
,
...
...
drivers/net/wireless/iwlegacy/iwl4965-base.c
View file @
badb0295
...
@@ -2984,15 +2984,15 @@ static void iwl4965_bg_txpower_work(struct work_struct *work)
...
@@ -2984,15 +2984,15 @@ static void iwl4965_bg_txpower_work(struct work_struct *work)
struct
iwl_priv
*
priv
=
container_of
(
work
,
struct
iwl_priv
,
struct
iwl_priv
*
priv
=
container_of
(
work
,
struct
iwl_priv
,
txpower_work
);
txpower_work
);
mutex_lock
(
&
priv
->
mutex
);
/* If a scan happened to start before we got here
/* If a scan happened to start before we got here
* then just return; the statistics notification will
* then just return; the statistics notification will
* kick off another scheduled work to compensate for
* kick off another scheduled work to compensate for
* any temperature delta we missed here. */
* any temperature delta we missed here. */
if
(
test_bit
(
STATUS_EXIT_PENDING
,
&
priv
->
status
)
||
if
(
test_bit
(
STATUS_EXIT_PENDING
,
&
priv
->
status
)
||
test_bit
(
STATUS_SCANNING
,
&
priv
->
status
))
test_bit
(
STATUS_SCANNING
,
&
priv
->
status
))
return
;
goto
out
;
mutex_lock
(
&
priv
->
mutex
);
/* Regardless of if we are associated, we must reconfigure the
/* Regardless of if we are associated, we must reconfigure the
* TX power since frames can be sent on non-radar channels while
* TX power since frames can be sent on non-radar channels while
...
@@ -3002,7 +3002,7 @@ static void iwl4965_bg_txpower_work(struct work_struct *work)
...
@@ -3002,7 +3002,7 @@ static void iwl4965_bg_txpower_work(struct work_struct *work)
/* Update last_temperature to keep is_calib_needed from running
/* Update last_temperature to keep is_calib_needed from running
* when it isn't needed... */
* when it isn't needed... */
priv
->
last_temperature
=
priv
->
temperature
;
priv
->
last_temperature
=
priv
->
temperature
;
out:
mutex_unlock
(
&
priv
->
mutex
);
mutex_unlock
(
&
priv
->
mutex
);
}
}
...
...
drivers/net/wireless/iwlwifi/iwl-agn-tx.c
View file @
badb0295
...
@@ -568,6 +568,10 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
...
@@ -568,6 +568,10 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
hdr_len
=
ieee80211_hdrlen
(
fc
);
hdr_len
=
ieee80211_hdrlen
(
fc
);
/* For management frames use broadcast id to do not break aggregation */
if
(
!
ieee80211_is_data
(
fc
))
sta_id
=
ctx
->
bcast_sta_id
;
else
{
/* Find index into station table for destination station */
/* Find index into station table for destination station */
sta_id
=
iwl_sta_id_or_broadcast
(
priv
,
ctx
,
info
->
control
.
sta
);
sta_id
=
iwl_sta_id_or_broadcast
(
priv
,
ctx
,
info
->
control
.
sta
);
if
(
sta_id
==
IWL_INVALID_STATION
)
{
if
(
sta_id
==
IWL_INVALID_STATION
)
{
...
@@ -575,6 +579,7 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
...
@@ -575,6 +579,7 @@ int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
hdr
->
addr1
);
hdr
->
addr1
);
goto
drop_unlock
;
goto
drop_unlock
;
}
}
}
IWL_DEBUG_TX
(
priv
,
"station Id %d
\n
"
,
sta_id
);
IWL_DEBUG_TX
(
priv
,
"station Id %d
\n
"
,
sta_id
);
...
...
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