p += scnprintf(buf + p, bufsz - p, "Statistics Flag(0x%X):\n",
                       le32_to_cpu(il->_3945.stats.flag));
        if (le32_to_cpu(il->_3945.stats.flag) &
-                       UCODE_STATISTICS_CLEAR_MSK)
+                       UCODE_STATS_CLEAR_MSK)
                p += scnprintf(buf + p, bufsz - p,
                               "\tStatistics have been cleared\n");
        p += scnprintf(buf + p, bufsz - p, "\tOperational Frequency: %s\n",
                       (le32_to_cpu(il->_3945.stats.flag) &
-                       UCODE_STATISTICS_FREQUENCY_MSK)
+                       UCODE_STATS_FREQUENCY_MSK)
                        ? "2.4 GHz" : "5.2 GHz");
        p += scnprintf(buf + p, bufsz - p, "\tTGj Narrow Band: %s\n",
                       (le32_to_cpu(il->_3945.stats.flag) &
-                       UCODE_STATISTICS_NARROW_BAND_MSK)
+                       UCODE_STATS_NARROW_BAND_MSK)
                        ? "enabled" : "disabled");
        return p;
 }
 
         * stats request from the host as well as for the periodic
         * stats notifications (after received beacons) from the uCode.
         */
-       il->rx_handlers[REPLY_STATISTICS_CMD] = il3945_reply_stats;
-       il->rx_handlers[STATISTICS_NOTIFICATION] = il3945_hw_rx_stats;
+       il->rx_handlers[REPLY_STATS_CMD] = il3945_reply_stats;
+       il->rx_handlers[STATS_NOTIFICATION] = il3945_hw_rx_stats;
 
        il_setup_rx_scan_handlers(il);
        il->rx_handlers[CARD_STATE_NOTIFICATION] = il3945_rx_card_state_notif;
                 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
                 *   but apparently a few don't get set; catch them here. */
                reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
-                       pkt->hdr.cmd != STATISTICS_NOTIFICATION &&
+                       pkt->hdr.cmd != STATS_NOTIFICATION &&
                        pkt->hdr.cmd != REPLY_TX;
 
                /* Based on type of command response or notification,
 
        struct il_rx_pkt *pkt = rxb_addr(rxb);
        __le32 *flag = (__le32 *)&pkt->u.raw;
 
-       if (le32_to_cpu(*flag) & UCODE_STATISTICS_CLEAR_MSK) {
+       if (le32_to_cpu(*flag) & UCODE_STATS_CLEAR_MSK) {
 #ifdef CONFIG_IWLEGACY_DEBUGFS
                memset(&il->_3945.accum_stats, 0,
                        sizeof(struct il3945_notif_stats));
 
 
        stat_band24 = !!(((struct il_notif_stats *)
                         stat_resp)->flag &
-                        STATISTICS_REPLY_FLG_BAND_24G_MSK);
+                        STATS_REPLY_FLG_BAND_24G_MSK);
        stat_chnum = le32_to_cpu(((struct il_notif_stats *)
                                 stat_resp)->flag) >> 16;
 
 
        flag = le32_to_cpu(il->_4965.stats.flag);
 
        p += scnprintf(buf + p, bufsz - p, "Statistics Flag(0x%X):\n", flag);
-       if (flag & UCODE_STATISTICS_CLEAR_MSK)
+       if (flag & UCODE_STATS_CLEAR_MSK)
                p += scnprintf(buf + p, bufsz - p,
                "\tStatistics have been cleared\n");
        p += scnprintf(buf + p, bufsz - p, "\tOperational Frequency: %s\n",
-               (flag & UCODE_STATISTICS_FREQUENCY_MSK)
+               (flag & UCODE_STATS_FREQUENCY_MSK)
                ? "2.4 GHz" : "5.2 GHz");
        p += scnprintf(buf + p, bufsz - p, "\tTGj Narrow Band: %s\n",
-               (flag & UCODE_STATISTICS_NARROW_BAND_MSK)
+               (flag & UCODE_STATS_NARROW_BAND_MSK)
                 ? "enabled" : "disabled");
 
        return p;
 
        change = ((il->_4965.stats.general.common.temperature !=
                   pkt->u.stats.general.common.temperature) ||
                   ((il->_4965.stats.flag &
-                  STATISTICS_REPLY_FLG_HT40_MODE_MSK) !=
+                  STATS_REPLY_FLG_HT40_MODE_MSK) !=
                   (pkt->u.stats.flag &
-                  STATISTICS_REPLY_FLG_HT40_MODE_MSK)));
+                  STATS_REPLY_FLG_HT40_MODE_MSK)));
 #ifdef CONFIG_IWLEGACY_DEBUGFS
        il4965_accumulative_stats(il, (__le32 *)&pkt->u.stats);
 #endif
        memcpy(&il->_4965.stats, &pkt->u.stats,
                sizeof(il->_4965.stats));
 
-       set_bit(S_STATISTICS, &il->status);
+       set_bit(S_STATS, &il->status);
 
        /* Reschedule the stats timer to occur in
         * REG_RECALIB_PERIOD seconds to ensure we get a
                  msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
 
        if (unlikely(!test_bit(S_SCANNING, &il->status)) &&
-           (pkt->hdr.cmd == STATISTICS_NOTIFICATION)) {
+           (pkt->hdr.cmd == STATS_NOTIFICATION)) {
                il4965_rx_calc_noise(il);
                queue_work(il->workqueue, &il->run_time_calib_work);
        }
 {
        struct il_rx_pkt *pkt = rxb_addr(rxb);
 
-       if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATISTICS_CLEAR_MSK) {
+       if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATS_CLEAR_MSK) {
 #ifdef CONFIG_IWLEGACY_DEBUGFS
                memset(&il->_4965.accum_stats, 0,
                        sizeof(struct il_notif_stats));
  * This callback is provided in order to send a stats request.
  *
  * This timer function is continually reset to execute within
- * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
+ * REG_RECALIB_PERIOD seconds since the last STATS_NOTIFICATION
  * was received.  We need to ensure we receive the stats in order
  * to update the temperature used for calibrating the TXPOWER.
  */
         * stats request from the host as well as for the periodic
         * stats notifications (after received beacons) from the uCode.
         */
-       il->rx_handlers[REPLY_STATISTICS_CMD] = il4965_reply_stats;
-       il->rx_handlers[STATISTICS_NOTIFICATION] = il4965_rx_stats;
+       il->rx_handlers[REPLY_STATS_CMD] = il4965_reply_stats;
+       il->rx_handlers[STATS_NOTIFICATION] = il4965_rx_stats;
 
        il_setup_rx_scan_handlers(il);
 
                        (pkt->hdr.cmd != REPLY_RX) &&
                        (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
                        (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
-                       (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
+                       (pkt->hdr.cmd != STATS_NOTIFICATION) &&
                        (pkt->hdr.cmd != REPLY_TX);
 
                /* Based on type of command response or notification,
 
 
        if (test_bit(S_TEMPERATURE, &il->status) &&
            (il->_4965.stats.flag &
-                       STATISTICS_REPLY_FLG_HT40_MODE_MSK)) {
+                       STATS_REPLY_FLG_HT40_MODE_MSK)) {
                D_TEMP("Running HT40 temperature calibration\n");
                R1 = (s32)le32_to_cpu(il->card_alive_init.therm_r1[1]);
                R2 = (s32)le32_to_cpu(il->card_alive_init.therm_r2[1]);
 {
        int temp_diff;
 
-       if (!test_bit(S_STATISTICS, &il->status)) {
+       if (!test_bit(S_STATS, &il->status)) {
                D_TEMP("Temperature not updated -- no stats.\n");
                return 0;
        }
 
  * uCode provides all 4 values to the driver via the "initialize alive"
  * notification (see struct il4965_init_alive_resp).  After the runtime uCode
  * image loads, uCode updates the R4 value via stats notifications
- * (see STATISTICS_NOTIFICATION), which occur after each received beacon
- * when associated, or can be requested via REPLY_STATISTICS_CMD.
+ * (see STATS_NOTIFICATION), which occur after each received beacon
+ * when associated, or can be requested via REPLY_STATS_CMD.
  *
  * NOTE:  uCode provides the R4 value as a 23-bit signed value.  Driver
  *        must sign-extend to 32 bits before applying formula below.
 
        REPLY_BT_CONFIG = 0x9b,
 
        /* Statistics */
-       REPLY_STATISTICS_CMD = 0x9c,
-       STATISTICS_NOTIFICATION = 0x9d,
+       REPLY_STATS_CMD = 0x9c,
+       STATS_NOTIFICATION = 0x9d,
 
        /* RF-KILL commands and notifications */
        CARD_STATE_NOTIFICATION = 0xa1,
 #define IL_PROBE_STATUS_FAIL_TTL       BIT(1)
 #define IL_PROBE_STATUS_FAIL_BT        BIT(2)
 
-#define NUMBER_OF_STATISTICS 1 /* first __le32 is good CRC */
+#define NUMBER_OF_STATS 1      /* first __le32 is good CRC */
 /*
  * SCAN_RESULTS_NOTIFICATION = 0x83 (notification only, not a command)
  */
        u8 num_probe_not_sent; /* not enough time to send */
        __le32 tsf_low;
        __le32 tsf_high;
-       __le32 stats[NUMBER_OF_STATISTICS];
+       __le32 stats[NUMBER_OF_STATS];
 } __packed;
 
 /*
        __le32 reserved3;
 } __packed;
 
-#define UCODE_STATISTICS_CLEAR_MSK             (0x1 << 0)
-#define UCODE_STATISTICS_FREQUENCY_MSK         (0x1 << 1)
-#define UCODE_STATISTICS_NARROW_BAND_MSK       (0x1 << 2)
+#define UCODE_STATS_CLEAR_MSK          (0x1 << 0)
+#define UCODE_STATS_FREQUENCY_MSK              (0x1 << 1)
+#define UCODE_STATS_NARROW_BAND_MSK    (0x1 << 2)
 
 /*
- * REPLY_STATISTICS_CMD = 0x9c,
+ * REPLY_STATS_CMD = 0x9c,
  * all devices identical.
  *
  * This command triggers an immediate response containing uCode stats.
- * The response is in the same format as STATISTICS_NOTIFICATION 0x9d, below.
+ * The response is in the same format as STATS_NOTIFICATION 0x9d, below.
  *
  * If the CLEAR_STATS configuration flag is set, uCode will clear its
  * internal copy of the stats (counters) after issuing the response.
- * This flag does not affect STATISTICS_NOTIFICATIONs after beacons (see below).
+ * This flag does not affect STATS_NOTIFICATIONs after beacons (see below).
  *
  * If the DISABLE_NOTIF configuration flag is set, uCode will not issue
- * STATISTICS_NOTIFICATIONs after received beacons (see below).  This flag
- * does not affect the response to the REPLY_STATISTICS_CMD 0x9c itself.
+ * STATS_NOTIFICATIONs after received beacons (see below).  This flag
+ * does not affect the response to the REPLY_STATS_CMD 0x9c itself.
  */
 #define IL_STATS_CONF_CLEAR_STATS cpu_to_le32(0x1)     /* see above */
 #define IL_STATS_CONF_DISABLE_NOTIF cpu_to_le32(0x2)/* see above */
 } __packed;
 
 /*
- * STATISTICS_NOTIFICATION = 0x9d (notification only, not a command)
+ * STATS_NOTIFICATION = 0x9d (notification only, not a command)
  *
  * By default, uCode issues this notification after receiving a beacon
  * while associated.  To disable this behavior, set DISABLE_NOTIF flag in the
- * REPLY_STATISTICS_CMD 0x9c, above.
+ * REPLY_STATS_CMD 0x9c, above.
  *
  * Statistics counters continue to increment beacon after beacon, but are
- * cleared when changing channels or when driver issues REPLY_STATISTICS_CMD
+ * cleared when changing channels or when driver issues REPLY_STATS_CMD
  * 0x9c with CLEAR_STATS bit set (see above).
  *
  * uCode also issues this notification during scans.  uCode clears stats
  * appropriately so that each notification contains stats for only the
  * one channel that has just been scanned.
  */
-#define STATISTICS_REPLY_FLG_BAND_24G_MSK         cpu_to_le32(0x2)
-#define STATISTICS_REPLY_FLG_HT40_MODE_MSK        cpu_to_le32(0x8)
+#define STATS_REPLY_FLG_BAND_24G_MSK         cpu_to_le32(0x2)
+#define STATS_REPLY_FLG_HT40_MODE_MSK        cpu_to_le32(0x8)
 
 struct il3945_notif_stats {
        __le32 flag;
  * time listening, not transmitting).  Driver must adjust sensitivity so that
  * the ratio of actual false alarms to actual Rx time falls within this range.
  *
- * While associated, uCode delivers STATISTICS_NOTIFICATIONs after each
+ * While associated, uCode delivers STATS_NOTIFICATIONs after each
  * received beacon.  These provide information to the driver to analyze the
  * sensitivity.  Don't analyze stats that come in from scanning, or any
  * other non-associated-network source.  Pertinent stats include:
  * This command sets the relative gains of 4965 device's 3 radio receiver chains.
  *
  * After the first association, driver should accumulate signal and noise
- * stats from the STATISTICS_NOTIFICATIONs that follow the first 20
+ * stats from the STATS_NOTIFICATIONs that follow the first 20
  * beacons from the associated network (don't collect stats that come
  * in from scanning, or any other non-network source).
  *
 
        };
 
        if (flags & CMD_ASYNC)
-               return il_send_cmd_pdu_async(il, REPLY_STATISTICS_CMD,
+               return il_send_cmd_pdu_async(il, REPLY_STATS_CMD,
                                        sizeof(struct il_stats_cmd),
                                        &stats_cmd, NULL);
        else
-               return il_send_cmd_pdu(il, REPLY_STATISTICS_CMD,
+               return il_send_cmd_pdu(il, REPLY_STATS_CMD,
                                        sizeof(struct il_stats_cmd),
                                        &stats_cmd);
 }
 
 #define S_TEMPERATURE  8
 #define S_GEO_CONFIGURED       9
 #define S_EXIT_PENDING 10
-#define S_STATISTICS   12
+#define S_STATS                12
 #define S_SCANNING             13
 #define S_SCAN_ABORTING        14
 #define S_SCAN_HW              15
 
                test_bit(S_GEO_CONFIGURED, &il->status));
        pos += scnprintf(buf + pos, bufsz - pos, "S_EXIT_PENDING:\t %d\n",
                test_bit(S_EXIT_PENDING, &il->status));
-       pos += scnprintf(buf + pos, bufsz - pos, "S_STATISTICS:\t %d\n",
-               test_bit(S_STATISTICS, &il->status));
+       pos += scnprintf(buf + pos, bufsz - pos, "S_STATS:\t %d\n",
+               test_bit(S_STATS, &il->status));
        pos += scnprintf(buf + pos, bufsz - pos, "S_SCANNING:\t %d\n",
                test_bit(S_SCANNING, &il->status));
        pos += scnprintf(buf + pos, bufsz - pos, "S_SCAN_ABORTING:\t %d\n",
 
                IL_CMD(REPLY_TX_BEACON);
                IL_CMD(REPLY_TX_PWR_TBL_CMD);
                IL_CMD(REPLY_BT_CONFIG);
-               IL_CMD(REPLY_STATISTICS_CMD);
-               IL_CMD(STATISTICS_NOTIFICATION);
+               IL_CMD(REPLY_STATS_CMD);
+               IL_CMD(STATS_NOTIFICATION);
                IL_CMD(CARD_STATE_NOTIFICATION);
                IL_CMD(MISSED_BEACONS_NOTIFICATION);
                IL_CMD(REPLY_CT_KILL_CONFIG_CMD);