Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9165dabb authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

treewide: Fix printk() message errors



This patch fix spelling typos in printk and kconfig.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 95f21c5c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ int arch_hibernation_header_save(void *addr, unsigned int max_size)

	/* Save the mpidr of the cpu we called cpu_suspend() on... */
	if (sleep_cpu < 0) {
		pr_err("Failing to hibernate on an unkown CPU.\n");
		pr_err("Failing to hibernate on an unknown CPU.\n");
		return -ENODEV;
	}
	hdr->sleep_cpu_mpidr = cpu_logical_map(sleep_cpu);
@@ -547,7 +547,7 @@ int swsusp_arch_resume(void)
int hibernate_resume_nonboot_cpu_disable(void)
{
	if (sleep_cpu < 0) {
		pr_err("Failing to resume from hibernate on an unkown CPU.\n");
		pr_err("Failing to resume from hibernate on an unknown CPU.\n");
		return -ENODEV;
	}

+1 −1
Original line number Diff line number Diff line
@@ -341,7 +341,7 @@ void output_pm_defines(void)

void output_kvm_defines(void)
{
	COMMENT(" KVM/MIPS Specfic offsets. ");
	COMMENT(" KVM/MIPS Specific offsets. ");

	OFFSET(VCPU_FPR0, kvm_vcpu_arch, fpu.fpr[0]);
	OFFSET(VCPU_FPR1, kvm_vcpu_arch, fpu.fpr[1]);
+1 −1
Original line number Diff line number Diff line
#
# Makefile for the Linux/SuperH CPU-specifc backends.
# Makefile for the Linux/SuperH CPU-specific backends.
#

obj-$(CONFIG_CPU_SH2)		= sh2/
+1 −1
Original line number Diff line number Diff line
#
# Makefile for the Linux/SuperH CPU-specifc IRQ handlers.
# Makefile for the Linux/SuperH CPU-specific IRQ handlers.
#
obj-$(CONFIG_SUPERH32)			+= imask.o
obj-$(CONFIG_CPU_SH5)			+= intc-sh5.o
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ config ACPI_PROCFS_POWER
	  Say N to delete power /proc/acpi/ directories that have moved to /sys/

config ACPI_REV_OVERRIDE_POSSIBLE
	bool "Allow supported ACPI revision to be overriden"
	bool "Allow supported ACPI revision to be overridden"
	depends on X86
	default y
	help
Loading