Commit 0ddbbb89 authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Michael Ellerman
Browse files

powerpc: Fix typos



Fix typos, most reported by "codespell arch/powerpc".  Only touches
comments, no code changes.

Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240103231605.1801364-8-helgaas@kernel.org
parent 39434af1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -108,8 +108,8 @@ DTC_FLAGS ?= -p 1024
# these files into the build dir, fix up any includes and ensure that dependent
# files are copied in the right order.

# these need to be seperate variables because they are copied out of different
# directories in the kernel tree. Sure you COULd merge them, but it's a
# these need to be separate variables because they are copied out of different
# directories in the kernel tree. Sure you COULD merge them, but it's a
# cure-is-worse-than-disease situation.
zlib-decomp-$(CONFIG_KERNEL_GZIP) := decompress_inflate.c
zlib-$(CONFIG_KERNEL_GZIP) := inffast.c inflate.c inftrees.c
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ ieee1588@ef602800 {
				reg = <0xef602800 0x60>;
				interrupt-parent = <&UIC0>;
				interrupts = <0x4 0x4>;
				/* This thing is a bit weird.  It has it's own UIC
				/* This thing is a bit weird.  It has its own UIC
				 * that it uses to generate snapshot triggers.  We
				 * don't really support this device yet, and it needs
				 * work to figure this out.
+1 −1
Original line number Diff line number Diff line
@@ -188,7 +188,7 @@ static inline void prep_esm_blob(struct addr_range vmlinux, void *chosen) { }

/* A buffer that may be edited by tools operating on a zImage binary so as to
 * edit the command line passed to vmlinux (by setting /chosen/bootargs).
 * The buffer is put in it's own section so that tools may locate it easier.
 * The buffer is put in its own section so that tools may locate it easier.
 */
static char cmdline[BOOT_COMMAND_LINE_SIZE]
	__attribute__((__section__("__builtin_cmdline")));
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ BSS_STACK(4096);

/* A buffer that may be edited by tools operating on a zImage binary so as to
 * edit the command line passed to vmlinux (by setting /chosen/bootargs).
 * The buffer is put in it's own section so that tools may locate it easier.
 * The buffer is put in its own section so that tools may locate it easier.
 */

static char cmdline[BOOT_COMMAND_LINE_SIZE]
+1 −1
Original line number Diff line number Diff line
@@ -982,7 +982,7 @@ static inline phys_addr_t page_to_phys(struct page *page)
}

/*
 * 32 bits still uses virt_to_bus() for it's implementation of DMA
 * 32 bits still uses virt_to_bus() for its implementation of DMA
 * mappings se we have to keep it defined here. We also have some old
 * drivers (shame shame shame) that use bus_to_virt() and haven't been
 * fixed yet so I need to define it here.
Loading