Commit 15ffd075 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach
Browse files

iwlwifi: various comments and code cleanups



No need to include net/ip6_checksum.h twice.
Remove TODOs.
Remove trailing space.

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
parent 23ae6128
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -287,16 +287,13 @@ enum iwl_rx_mpdu_status {
	IWL_RX_MPDU_STATUS_KEY_ERROR		= BIT(4),
	IWL_RX_MPDU_STATUS_ICV_OK		= BIT(5),
	IWL_RX_MPDU_STATUS_MIC_OK		= BIT(6),
	/* TODO - verify this is the correct value */
	IWL_RX_MPDU_RES_STATUS_TTAK_OK		= BIT(7),
	IWL_RX_MPDU_STATUS_SEC_MASK		= 0x7 << 8,
	IWL_RX_MPDU_STATUS_SEC_NONE		= 0x0 << 8,
	IWL_RX_MPDU_STATUS_SEC_WEP		= 0x1 << 8,
	IWL_RX_MPDU_STATUS_SEC_CCM		= 0x2 << 8,
	IWL_RX_MPDU_STATUS_SEC_TKIP		= 0x3 << 8,
	/* TODO - define IWL_RX_MPDU_STATUS_SEC_EXT_ENC - this is a stub */
	IWL_RX_MPDU_STATUS_SEC_EXT_ENC		= 0x4 << 8,
	/* TODO - define IWL_RX_MPDU_STATUS_SEC_GCM - this is a stub */
	IWL_RX_MPDU_STATUS_SEC_GCM		= 0x5 << 8,
	IWL_RX_MPDU_STATUS_DECRYPTED		= BIT(11),
	IWL_RX_MPDU_STATUS_WEP_MATCH		= BIT(12),
+0 −1
Original line number Diff line number Diff line
@@ -392,7 +392,6 @@ static const struct iwl_hcmd_arr iwl_mvm_groups[] = {
	[PHY_OPS_GROUP] = HCMD_ARR(iwl_mvm_phy_names),
};


/* this forward declaration can avoid to export the function */
static void iwl_mvm_async_handlers_wk(struct work_struct *wk);
static void iwl_mvm_d0i3_exit_work(struct work_struct *wk);
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@
#include <linux/sched.h>
#include <net/ip6_checksum.h>
#include <net/tso.h>
#include <net/ip6_checksum.h>

#include "iwl-debug.h"
#include "iwl-csr.h"
+1 −1

File changed.

Contains only whitespace changes.