Commit 41469ff9 authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Johannes Berg
Browse files

wifi: Fix typos

parent 3630f043
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -474,7 +474,7 @@ enum ath10k_hw_cc_wraparound_type {
	ATH10K_HW_CC_WRAP_SHIFTED_ALL = 1,

	/* Each hw counter wraps around independently. When the
	 * counter overflows the repestive counter is right shifted
	 * counter overflows the respective counter is right shifted
	 * by 1, i.e reset to 0x7fffffff, and other counters will be
	 * running unaffected. In this type of wraparound, it should
	 * be possible to report accurate Rx busy time unlike the
@@ -837,7 +837,7 @@ ath10k_is_rssi_enable(struct ath10k_hw_params *hw,
#define TARGET_10_4_NUM_TDLS_BUFFER_STA		1
#define TARGET_10_4_NUM_TDLS_SLEEP_STA		1

/* Maximum number of Copy Engine's supported */
/* Maximum number of Copy Engines supported */
#define CE_COUNT_MAX 12

/* Number of Copy Engines supported */
@@ -1134,7 +1134,7 @@ ath10k_is_rssi_enable(struct ath10k_hw_params *hw,
#define RTC_STATE_V_GET(x) (((x) & RTC_STATE_V_MASK) >> RTC_STATE_V_LSB)

/* Register definitions for first generation ath10k cards. These cards include
 * a mac thich has a register allocation similar to ath9k and at least some
 * a mac which has a register allocation similar to ath9k and at least some
 * registers including the ones relevant for modifying the coverage class are
 * identical to the ath9k definitions.
 * These registers are usually managed by the ath10k firmware. However by
+1 −1
Original line number Diff line number Diff line
@@ -543,7 +543,7 @@
 * Queue control unit (QCU) registers [5211+]
 *
 * Card has 12 TX Queues but i see that only 0-9 are used (?)
 * both in binary HAL (see ah.h) and ar5k. Each queue has it's own
 * both in binary HAL (see ah.h) and ar5k. Each queue has its own
 * TXDP at addresses 0x0800 - 0x082c, a CBR (Constant Bit Rate)
 * configuration register (0x08c0 - 0x08ec), a ready time configuration
 * register (0x0900 - 0x092c), a misc configuration register (0x09c0 -
+3 −3
Original line number Diff line number Diff line
@@ -3878,7 +3878,7 @@ brcmf_notify_sched_scan_results(struct brcmf_if *ifp,
	brcmf_dbg(SCAN, "Enter\n");

	if (e->datalen < (sizeof(*pfn_result) + sizeof(*netinfo))) {
		brcmf_dbg(SCAN, "Event data to small. Ignore\n");
		brcmf_dbg(SCAN, "Event data too small. Ignore\n");
		return 0;
	}

@@ -4046,7 +4046,7 @@ brcmf_wowl_nd_results(struct brcmf_if *ifp, const struct brcmf_event_msg *e,
	brcmf_dbg(SCAN, "Enter\n");

	if (e->datalen < (sizeof(*pfn_result) + sizeof(*netinfo))) {
		brcmf_dbg(SCAN, "Event data to small. Ignore\n");
		brcmf_dbg(SCAN, "Event data too small. Ignore\n");
		return 0;
	}

@@ -4308,7 +4308,7 @@ static s32 brcmf_cfg80211_suspend(struct wiphy *wiphy,
		brcmf_set_mpc(ifp, 1);

	} else {
		/* Configure WOWL paramaters */
		/* Configure WOWL parameters */
		brcmf_configure_wowl(cfg, ifp, wowl);

		/* Prevent disassociation due to inactivity with keep-alive */
+2 −2
Original line number Diff line number Diff line
@@ -525,7 +525,7 @@ struct brcmf_mp_device *brcmf_get_module_param(struct device *dev,
	if (!settings)
		return NULL;

	/* start by using the module paramaters */
	/* start by using the module parameters */
	settings->p2p_enable = !!brcmf_p2p_enable;
	settings->feature_disable = brcmf_feature_disable;
	settings->fcmode = brcmf_fcmode;
@@ -612,7 +612,7 @@ static int __init brcmfmac_module_init(void)
	if (err == -ENODEV)
		brcmf_dbg(INFO, "No platform data available.\n");

	/* Initialize global module paramaters */
	/* Initialize global module parameters */
	brcmf_mp_attach();

	/* Continue the initialization by registering the different busses */
+2 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
 */

/**
 * struct brcmf_mp_global_t - Global module paramaters.
 * struct brcmf_mp_global_t - Global module parameters.
 *
 * @firmware_path: Alternative firmware path.
 */
@@ -31,7 +31,7 @@ struct brcmf_mp_global_t {
extern struct brcmf_mp_global_t brcmf_mp_global;

/**
 * struct brcmf_mp_device - Device module paramaters.
 * struct brcmf_mp_device - Device module parameters.
 *
 * @p2p_enable: Legacy P2P0 enable (old wpa_supplicant).
 * @feature_disable: Feature_disable bitmask.
Loading