Commit cb6dcabd authored by Sumanth Gavini's avatar Sumanth Gavini Committed by Jeff Johnson
Browse files

wifi: ath6kl: Fix spellings

parent 20870fb0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ int ath6kl_core_init(struct ath6kl *ar, enum ath6kl_htc_type htc_type)

	/*
	 * Turn on power to get hardware (target) version and leave power
	 * on delibrately as we will boot the hardware anyway within few
	 * on deliberately as we will boot the hardware anyway within few
	 * seconds.
	 */
	ret = ath6kl_hif_power_on(ar);
+1 −1
Original line number Diff line number Diff line
@@ -513,7 +513,7 @@ static int proc_pending_irqs(struct ath6kl_device *dev, bool *done)
out:
	/*
	 * An optimization to bypass reading the IRQ status registers
	 * unecessarily which can re-wake the target, if upper layers
	 * unnecessarily which can re-wake the target, if upper layers
	 * determine that we are in a low-throughput mode, we can rely on
	 * taking another interrupt rather than re-checking the status
	 * registers which can re-wake the target.
+3 −3
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ struct htc_endpoint_stats {
	/* count of credits received via another endpoint */
	u32 cred_from_ep0;

	/* count of consummed credits */
	/* count of consumed credits */
	u32 cred_cosumd;

	/* count of credits returned */
@@ -596,7 +596,7 @@ struct htc_target {
	/* protects free_ctrl_txbuf and free_ctrl_rxbuf */
	spinlock_t htc_lock;

	/* FIXME: does this protext rx_bufq and endpoint structures or what? */
	/* FIXME: does this protect rx_bufq and endpoint structures or what? */
	spinlock_t rx_lock;

	/* protects endpoint->txq */
@@ -624,7 +624,7 @@ struct htc_target {

	int chk_irq_status_cnt;

	/* counts the number of Tx without bundling continously per AC */
	/* counts the number of Tx without bundling continuously per AC */
	u32 ac_tx_count[WMM_NUM_AC];

	struct {
+1 −1
Original line number Diff line number Diff line
@@ -938,7 +938,7 @@ static void ath6kl_htc_tx_from_queue(struct htc_target *target,

		/*
		 * if an AC has bundling disabled and no tx bundling
		 * has occured continously for a certain number of TX,
		 * has occurred continuously for a certain number of TX,
		 * enable tx bundling for this AC
		 */
		if (!bundle_sent) {
+1 −1
Original line number Diff line number Diff line
@@ -718,7 +718,7 @@ static struct htc_packet *htc_lookup_tx_packet(struct htc_target *target,
	spin_lock_bh(&target->tx_lock);

	/*
	 * interate from the front of tx lookup queue
	 * iterate from the front of tx lookup queue
	 * this lookup should be fast since lower layers completes in-order and
	 * so the completed packet should be at the head of the list generally
	 */
Loading