|
@@ -1417,28 +1417,6 @@ static void iwl3945_rx_spectrum_measure_notif(struct iwl_priv *priv,
|
|
|
#endif
|
|
|
}
|
|
|
|
|
|
-static void iwl3945_rx_pm_sleep_notif(struct iwl_priv *priv,
|
|
|
- struct iwl_rx_mem_buffer *rxb)
|
|
|
-{
|
|
|
-#ifdef CONFIG_IWLWIFI_DEBUG
|
|
|
- struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
|
|
|
- struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
|
|
|
- IWL_DEBUG_RX(priv, "sleep mode: %d, src: %d\n",
|
|
|
- sleep->pm_sleep_mode, sleep->pm_wakeup_src);
|
|
|
-#endif
|
|
|
-}
|
|
|
-
|
|
|
-static void iwl3945_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
|
|
|
- struct iwl_rx_mem_buffer *rxb)
|
|
|
-{
|
|
|
- struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
|
|
|
- IWL_DEBUG_RADIO(priv, "Dumping %d bytes of unhandled "
|
|
|
- "notification for %s:\n",
|
|
|
- le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
|
|
|
- iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw,
|
|
|
- le32_to_cpu(pkt->len));
|
|
|
-}
|
|
|
-
|
|
|
static void iwl3945_bg_beacon_update(struct work_struct *work)
|
|
|
{
|
|
|
struct iwl_priv *priv =
|
|
@@ -1541,9 +1519,9 @@ static void iwl3945_setup_rx_handlers(struct iwl_priv *priv)
|
|
|
priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
|
|
|
priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
|
|
|
iwl3945_rx_spectrum_measure_notif;
|
|
|
- priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl3945_rx_pm_sleep_notif;
|
|
|
+ priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
|
|
|
priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
|
|
|
- iwl3945_rx_pm_debug_statistics_notif;
|
|
|
+ iwl_rx_pm_debug_statistics_notif;
|
|
|
priv->rx_handlers[BEACON_NOTIFICATION] = iwl3945_rx_beacon_notif;
|
|
|
|
|
|
/*
|