Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 290636
b: refs/heads/master
c: f03ee2a
h: refs/heads/master
v: v3
  • Loading branch information
Stanislaw Gruszka authored and John W. Linville committed Feb 22, 2012
1 parent 724a2bf commit b97c548
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 28 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: a89268e8cdcd52680bda21ada05f2716c6466377
refs/heads/master: f03ee2a87e21f76928c10d822639ec437113d312
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/iwlegacy/3945-mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -3672,7 +3672,7 @@ il3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
* PCI Tx retries from interfering with C3 CPU state */
pci_write_config_byte(pdev, 0x41, 0x00);

/* these spin locks will be used in apm_ops.init and EEPROM access
/* these spin locks will be used in apm_init and EEPROM access
* we should init now
*/
spin_lock_init(&il->reg_lock);
Expand Down
10 changes: 3 additions & 7 deletions trunk/drivers/net/wireless/iwlegacy/3945.c
Original file line number Diff line number Diff line change
Expand Up @@ -958,12 +958,11 @@ il3945_hw_nic_init(struct il_priv *il)
struct il_rx_queue *rxq = &il->rxq;

spin_lock_irqsave(&il->lock, flags);
il->ops->lib->apm_ops.init(il);
il3945_apm_init(il);
spin_unlock_irqrestore(&il->lock, flags);

il3945_set_pwr_vmain(il);

il->ops->lib->apm_ops.config(il);
il3945_nic_config(il);

/* Allocate the RX queue, or reset if it is already allocated */
if (!rxq->bd) {
Expand Down Expand Up @@ -2641,10 +2640,7 @@ static struct il_lib_ops il3945_lib = {
.txq_init = il3945_hw_tx_queue_init,
.load_ucode = il3945_load_bsm,
.dump_nic_error_log = il3945_dump_nic_error_log,
.apm_ops = {
.init = il3945_apm_init,
.config = il3945_nic_config,
},
.apm_init = il3945_apm_init,
.send_tx_power = il3945_send_tx_power,
.is_valid_rtc_data_addr = il3945_hw_valid_rtc_data_addr,
.eeprom_acquire_semaphore = il3945_eeprom_acquire_semaphore,
Expand Down
8 changes: 2 additions & 6 deletions trunk/drivers/net/wireless/iwlegacy/4965-mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,18 +199,14 @@ il4965_hw_nic_init(struct il_priv *il)
struct il_rx_queue *rxq = &il->rxq;
int ret;

/* nic_init */
spin_lock_irqsave(&il->lock, flags);
il->ops->lib->apm_ops.init(il);

il_apm_init(il);
/* Set interrupt coalescing calibration timer to default (512 usecs) */
il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_CALIB_TIMEOUT_DEF);

spin_unlock_irqrestore(&il->lock, flags);

il4965_set_pwr_vmain(il);

il->ops->lib->apm_ops.config(il);
il4965_nic_config(il);

/* Allocate the RX queue, or reset if it is already allocated */
if (!rxq->bd) {
Expand Down
7 changes: 2 additions & 5 deletions trunk/drivers/net/wireless/iwlegacy/4965.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ iw4965_is_ht40_channel(__le32 rxon_flags)
chan_mod == CHANNEL_MODE_MIXED);
}

static void
void
il4965_nic_config(struct il_priv *il)
{
unsigned long flags;
Expand Down Expand Up @@ -1900,10 +1900,7 @@ static struct il_lib_ops il4965_lib = {
.dump_nic_error_log = il4965_dump_nic_error_log,
.dump_fh = il4965_dump_fh,
.set_channel_switch = il4965_hw_channel_switch,
.apm_ops = {
.init = il_apm_init,
.config = il4965_nic_config,
},
.apm_init = il_apm_init,
.send_tx_power = il4965_send_tx_power,
.update_chain_flags = il4965_update_chain_flags,
.eeprom_acquire_semaphore = il4965_eeprom_acquire_semaphore,
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/net/wireless/iwlegacy/4965.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ int il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq);
int il4965_hw_nic_init(struct il_priv *il);
int il4965_dump_fh(struct il_priv *il, char **buf, bool display);

void il4965_nic_config(struct il_priv *il);

/* rx */
void il4965_rx_queue_restock(struct il_priv *il);
void il4965_rx_replenish(struct il_priv *il);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/iwlegacy/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ il_eeprom_init(struct il_priv *il)
}
e = (__le16 *) il->eeprom;

il->ops->lib->apm_ops.init(il);
il->ops->lib->apm_init(il);

ret = il_eeprom_verify_signature(il);
if (ret < 0) {
Expand Down
9 changes: 2 additions & 7 deletions trunk/drivers/net/wireless/iwlegacy/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -1566,11 +1566,6 @@ struct il_hcmd_utils_ops {
void (*post_scan) (struct il_priv *il);
};

struct il_apm_ops {
int (*init) (struct il_priv *il);
void (*config) (struct il_priv *il);
};

#ifdef CONFIG_IWLEGACY_DEBUGFS
struct il_debugfs_ops {
ssize_t(*rx_stats_read) (struct file *file, char __user *user_buf,
Expand Down Expand Up @@ -1605,9 +1600,9 @@ struct il_lib_ops {
int (*set_channel_switch) (struct il_priv *il,
struct ieee80211_channel_switch *ch_switch);
/* power management */
struct il_apm_ops apm_ops;
int (*apm_init) (struct il_priv *il);

/* power */
/* tx power */
int (*send_tx_power) (struct il_priv *il);
void (*update_chain_flags) (struct il_priv *il);

Expand Down

0 comments on commit b97c548

Please sign in to comment.