Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 256473
b: refs/heads/master
c: 6340211
h: refs/heads/master
i:
  256471: ae50135
v: v3
  • Loading branch information
Felix Fietkau authored and John W. Linville committed Jul 13, 2011
1 parent 0f17488 commit 5c1591a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f00643888ca435ce6934482243733cc140281d10
refs/heads/master: 6340211c5f4775a52c98052fb5661565f79249fd
2 changes: 2 additions & 0 deletions trunk/drivers/net/wireless/ath/ath5k/ath5k.h
Original file line number Diff line number Diff line change
Expand Up @@ -1067,6 +1067,8 @@ struct ath5k_hw {
u8 ah_retry_long;
u8 ah_retry_short;

u32 ah_use_32khz_clock;

u8 ah_coverage_class;
bool ah_ack_bitrate_high;
u8 ah_bwmode;
Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/net/wireless/ath/ath5k/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,9 @@ ath5k_debug_init_device(struct ath5k_softc *sc)

debugfs_create_file("queue", S_IWUSR | S_IRUSR, phydir, sc,
&fops_queue);

debugfs_create_bool("32khz_clock", S_IWUSR | S_IRUSR, phydir,
&sc->ah->ah_use_32khz_clock);
}

/* functions used in other places */
Expand Down
11 changes: 8 additions & 3 deletions trunk/drivers/net/wireless/ath/ath5k/reset.c
Original file line number Diff line number Diff line change
Expand Up @@ -1287,11 +1287,16 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
ath5k_hw_dma_init(ah);


/* Enable 32KHz clock function for AR5212+ chips
/*
* Enable 32KHz clock function for AR5212+ chips
* Set clocks to 32KHz operation and use an
* external 32KHz crystal when sleeping if one
* exists */
if (ah->ah_version == AR5K_AR5212 &&
* exists.
* Disabled by default because it is also disabled in
* other drivers and it is known to cause stability
* issues on some devices
*/
if (ah->ah_use_32khz_clock && ah->ah_version == AR5K_AR5212 &&
op_mode != NL80211_IFTYPE_AP)
ath5k_hw_set_sleep_clock(ah, true);

Expand Down

0 comments on commit 5c1591a

Please sign in to comment.