Commit 94bd83e4 authored by Julia Lawall's avatar Julia Lawall Committed by Thomas Bogendoerfer
Browse files

MIPS: fix typos in comments



Various spelling mistakes in comments.
Detected with the help of Coccinelle.

Signed-off-by: default avatarJulia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 7671f967
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -574,7 +574,7 @@ u32 au1xxx_dbdma_ring_alloc(u32 chanid, int entries)
		dp++;
	}

	/* Make last descrptor point to the first. */
	/* Make last descriptor point to the first. */
	dp--;
	dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(ctp->chan_desc_base));
	ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base;
+1 −1
Original line number Diff line number Diff line
@@ -318,7 +318,7 @@ int64_t cvmx_bootmem_phy_alloc(uint64_t req_size, uint64_t address_min,
		}

		/*
		 * Determine if this is an entry that can satisify the
		 * Determine if this is an entry that can satisfy the
		 * request Check to make sure entry is large enough to
		 * satisfy request.
		 */
+1 −1
Original line number Diff line number Diff line
@@ -377,7 +377,7 @@ cvmx_pko_status_t cvmx_pko_config_port(uint64_t port, uint64_t base_queue,
			/*
			 * Check to make sure all static priority
			 * queues are contiguous.  Also catches some
			 * cases of static priorites not starting at
			 * cases of static priorities not starting at
			 * queue 0.
			 */
			if (static_priority_end != -1
+1 −1
Original line number Diff line number Diff line
@@ -1405,7 +1405,7 @@ static void octeon_irq_init_ciu2_percpu(void)
	 * completed.
	 *
	 * There are 9 registers and 3 IPX levels with strides 0x1000
	 * and 0x200 respectivly.  Use loops to clear them.
	 * and 0x200 respectively.  Use loops to clear them.
	 */
	for (regx = 0; regx <= 0x8000; regx += 0x1000) {
		for (ipx = 0; ipx <= 0x400; ipx += 0x200)
+1 −1
Original line number Diff line number Diff line
@@ -419,7 +419,7 @@ static int dwc3_octeon_clocks_start(struct device *dev, u64 base)
	/* Step 5c: Enable SuperSpeed. */
	uctl_ctl.s.ref_ssp_en = 1;

	/* Step 5d: Cofngiure PHYs. SKIP */
	/* Step 5d: Configure PHYs. SKIP */

	/* Step 6a & 6b: Power up PHYs. */
	uctl_ctl.s.hs_power_en = 1;
Loading