File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
drivers/net/wireless/intel/iwlwifi Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -354,6 +354,8 @@ enum {
354
354
#define CSR_HW_RF_ID_TYPE_GF (0x0010D000)
355
355
#define CSR_HW_RF_ID_TYPE_GF4 (0x0010E000)
356
356
#define CSR_HW_RF_ID_TYPE_MS (0x00111000)
357
+ #define CSR_HW_RF_ID_TYPE_FM (0x00112000)
358
+ #define CSR_HW_RF_ID_TYPE_WP (0x00113000)
357
359
358
360
/* HW_RF CHIP STEP */
359
361
#define CSR_HW_RF_STEP (_val ) (((_val) >> 8) & 0xF)
Original file line number Diff line number Diff line change @@ -290,6 +290,16 @@ static void iwl_pcie_get_rf_name(struct iwl_trans *trans)
290
290
case CSR_HW_RFID_TYPE (CSR_HW_RF_ID_TYPE_MS ):
291
291
pos = scnprintf (buf , buflen , "MS" );
292
292
break ;
293
+ case CSR_HW_RFID_TYPE (CSR_HW_RF_ID_TYPE_FM ):
294
+ pos = scnprintf (buf , buflen , "FM" );
295
+ break ;
296
+ case CSR_HW_RFID_TYPE (CSR_HW_RF_ID_TYPE_WP ):
297
+ if (SILICON_Z_STEP ==
298
+ CSR_HW_RFID_STEP (trans -> hw_rf_id ))
299
+ pos = scnprintf (buf , buflen , "WHTC" );
300
+ else
301
+ pos = scnprintf (buf , buflen , "WH" );
302
+ break ;
293
303
default :
294
304
return ;
295
305
}
You can’t perform that action at this time.
0 commit comments