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

Commit 6774def6 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

treewide: fix typo in printk and Kconfig



This patch fix spelling typo in printk and Kconfig within
various part of kernel sources.

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 cbd25516
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1092,7 +1092,7 @@ static int __init edac_devinit(void)
		name = edac_device_names[i];
		dev = platform_device_register_simple(name, -1, NULL, 0);
		if (IS_ERR(dev)) {
			pr_err("Registation of %s failed!\n", name);
			pr_err("Registration of %s failed!\n", name);
			err = PTR_ERR(dev);
		}
	}
@@ -1103,7 +1103,7 @@ static int __init edac_devinit(void)
		dev = platform_device_register_simple("octeon_lmc_edac",
						      i, NULL, 0);
		if (IS_ERR(dev)) {
			pr_err("Registation of octeon_lmc_edac %d failed!\n", i);
			pr_err("Registration of octeon_lmc_edac %d failed!\n", i);
			err = PTR_ERR(dev);
		}
	}
+1 −1
Original line number Diff line number Diff line
@@ -708,7 +708,7 @@ static int __init octeon_pci_setup(void)

	if (IS_ERR(platform_device_register_simple("octeon_pci_edac",
						   -1, NULL, 0)))
		pr_err("Registation of co_pci_edac failed!\n");
		pr_err("Registration of co_pci_edac failed!\n");

	octeon_pci_dma_init();

+3 −3
Original line number Diff line number Diff line
@@ -661,7 +661,7 @@ int kvmppc_load_last_inst(struct kvm_vcpu *vcpu, enum instruction_type type,
	if (unlikely((pr && !(mas3 & MAS3_UX)) ||
		     (!pr && !(mas3 & MAS3_SX)))) {
		pr_err_ratelimited(
			"%s: Instuction emulation from guest addres %08lx without execute permission\n",
			"%s: Instruction emulation from guest address %08lx without execute permission\n",
			__func__, geaddr);
		return EMULATE_AGAIN;
	}
@@ -673,7 +673,7 @@ int kvmppc_load_last_inst(struct kvm_vcpu *vcpu, enum instruction_type type,
	if (has_feature(vcpu, VCPU_FTR_MMU_V2) &&
	    unlikely((mas2 & MAS2_I) || (mas2 & MAS2_W) || !(mas2 & MAS2_M))) {
		pr_err_ratelimited(
			"%s: Instuction emulation from guest addres %08lx mismatches storage attributes\n",
			"%s: Instruction emulation from guest address %08lx mismatches storage attributes\n",
			__func__, geaddr);
		return EMULATE_AGAIN;
	}
@@ -686,7 +686,7 @@ int kvmppc_load_last_inst(struct kvm_vcpu *vcpu, enum instruction_type type,

	/* Guard against emulation from devices area */
	if (unlikely(!page_is_ram(pfn))) {
		pr_err_ratelimited("%s: Instruction emulation from non-RAM host addres %08llx is not supported\n",
		pr_err_ratelimited("%s: Instruction emulation from non-RAM host address %08llx is not supported\n",
			 __func__, addr);
		return EMULATE_AGAIN;
	}
+1 −1
Original line number Diff line number Diff line
@@ -1334,7 +1334,7 @@ init_card(struct l1oip *hc, int pri, int bundle)
	if (id[l1oip_cnt] == 0) {
		printk(KERN_WARNING "Warning: No 'id' value given or "
		       "0, this is highly unsecure. Please use 32 "
		       "bit randmom number 0x...\n");
		       "bit random number 0x...\n");
	}
	hc->id = id[l1oip_cnt];
	if (debug & DEBUG_L1OIP_INIT)
+1 −1
Original line number Diff line number Diff line
@@ -490,7 +490,7 @@ static int budget_patch_attach (struct saa7146_dev* dev, struct saa7146_pci_exte

	if(detected == 0)
		printk("budget-patch not detected or saa7146 in non-default state.\n"
		       "try enabling ressetting of 7146 with MASK_31 in MC1 register\n");
		       "try enabling resetting of 7146 with MASK_31 in MC1 register\n");

	else
		printk("BUDGET-PATCH DETECTED.\n");
Loading