Skip to content

Commit 87c78b6

Browse files
committed
powerpc: Fix all occurences of "the the"
Rather than waiting for the bots to fix these one-by-one, fix all occurences of "the the" throughout arch/powerpc. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20220518142629.513007-1-mpe@ellerman.id.au
1 parent 079e5fd commit 87c78b6

14 files changed

Lines changed: 14 additions & 14 deletions

File tree

arch/powerpc/boot/wrapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ while [ "$#" -gt 0 ]; do
162162
fi
163163
;;
164164
--no-gzip)
165-
# a "feature" of the the wrapper script is that it can be used outside
165+
# a "feature" of the wrapper script is that it can be used outside
166166
# the kernel tree. So keeping this around for backwards compatibility.
167167
compression=
168168
uboot_comp=none

arch/powerpc/kernel/eeh_pe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ struct eeh_pe *eeh_pe_get(struct pci_controller *phb, int pe_no)
302302
* @new_pe_parent.
303303
*
304304
* If @new_pe_parent is NULL then the new PE will be inserted under
305-
* directly under the the PHB.
305+
* directly under the PHB.
306306
*/
307307
int eeh_pe_tree_insert(struct eeh_dev *edev, struct eeh_pe *new_pe_parent)
308308
{

arch/powerpc/kernel/head_64.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ __secondary_hold_acknowledge:
111111
#ifdef CONFIG_RELOCATABLE
112112
/* This flag is set to 1 by a loader if the kernel should run
113113
* at the loaded address instead of the linked address. This
114-
* is used by kexec-tools to keep the the kdump kernel in the
114+
* is used by kexec-tools to keep the kdump kernel in the
115115
* crash_kernel region. The loader is responsible for
116116
* observing the alignment requirement.
117117
*/

arch/powerpc/kernel/pci-common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
#include "../../../drivers/pci/pci.h"
4444

45-
/* hose_spinlock protects accesses to the the phb_bitmap. */
45+
/* hose_spinlock protects accesses to the phb_bitmap. */
4646
static DEFINE_SPINLOCK(hose_spinlock);
4747
LIST_HEAD(hose_list);
4848

arch/powerpc/kernel/smp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ static int parse_thread_groups(struct device_node *dn,
874874
* @tg : The thread-group structure of the CPU node which @cpu belongs
875875
* to.
876876
*
877-
* Returns the index to tg->thread_list that points to the the start
877+
* Returns the index to tg->thread_list that points to the start
878878
* of the thread_group that @cpu belongs to.
879879
*
880880
* Returns -1 if cpu doesn't belong to any of the groups pointed to by

arch/powerpc/kvm/book3s_64_entry.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
124124

125125
/*
126126
* "Skip" interrupts are part of a trick KVM uses a with hash guests to load
127-
* the faulting instruction in guest memory from the the hypervisor without
127+
* the faulting instruction in guest memory from the hypervisor without
128128
* walking page tables.
129129
*
130130
* When the guest takes a fault that requires the hypervisor to load the

arch/powerpc/kvm/book3s_xive_native.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ static int kvmppc_xive_native_reset_mapped(struct kvm *kvm, unsigned long irq)
209209

210210
/*
211211
* Clear the ESB pages of the IRQ number being mapped (or
212-
* unmapped) into the guest and let the the VM fault handler
212+
* unmapped) into the guest and let the VM fault handler
213213
* repopulate with the appropriate ESB pages (device or IC)
214214
*/
215215
pr_debug("clearing esb pages for girq 0x%lx\n", irq);

arch/powerpc/mm/cacheflush.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ static inline bool flush_coherent_icache(void)
1212
/*
1313
* For a snooping icache, we still need a dummy icbi to purge all the
1414
* prefetched instructions from the ifetch buffers. We also need a sync
15-
* before the icbi to order the the actual stores to memory that might
15+
* before the icbi to order the actual stores to memory that might
1616
* have modified instructions with the icbi.
1717
*/
1818
if (cpu_has_feature(CPU_FTR_COHERENT_ICACHE)) {

arch/powerpc/mm/pgtable.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ EXPORT_SYMBOL_GPL(vmalloc_to_phys);
351351
* (4) hugepd pointer, _PAGE_PTE = 0 and bits [2..6] indicate size of table
352352
*
353353
* So long as we atomically load page table pointers we are safe against teardown,
354-
* we can follow the address down to the the page and take a ref on it.
354+
* we can follow the address down to the page and take a ref on it.
355355
* This function need to be called with interrupts disabled. We use this variant
356356
* when we have MSR[EE] = 0 but the paca->irq_soft_mask = IRQS_ENABLED
357357
*/

arch/powerpc/platforms/52xx/mpc52xx_gpt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Copyright (c) 2009 Secret Lab Technologies Ltd.
66
* Copyright (c) 2008 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
77
*
8-
* This file is a driver for the the General Purpose Timer (gpt) devices
8+
* This file is a driver for the General Purpose Timer (gpt) devices
99
* found on the MPC5200 SoC. Each timer has an IO pin which can be used
1010
* for GPIO or can be used to raise interrupts. The timer function can
1111
* be used independently from the IO pin, or it can be used to control

0 commit comments

Comments
 (0)