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

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

treewide: Fix typos in printk



This patch fix spelling typos found in printk
within various part of the 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 9938b044
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -422,7 +422,7 @@ static void show_saved_mc(void)
		data_size = get_datasize(mc_saved_header);
		data_size = get_datasize(mc_saved_header);
		date = mc_saved_header->date;
		date = mc_saved_header->date;


		pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, toal size=0x%x, date = %04x-%02x-%02x\n",
		pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, total size=0x%x, date = %04x-%02x-%02x\n",
			 i, sig, pf, rev, total_size,
			 i, sig, pf, rev, total_size,
			 date & 0xffff,
			 date & 0xffff,
			 date >> 24,
			 date >> 24,
+1 −1
Original line number Original line Diff line number Diff line
@@ -254,7 +254,7 @@ int kvm_iommu_map_guest(struct kvm *kvm)
	    !iommu_capable(&pci_bus_type, IOMMU_CAP_INTR_REMAP)) {
	    !iommu_capable(&pci_bus_type, IOMMU_CAP_INTR_REMAP)) {
		printk(KERN_WARNING "%s: No interrupt remapping support,"
		printk(KERN_WARNING "%s: No interrupt remapping support,"
		       " disallowing device assignment."
		       " disallowing device assignment."
		       " Re-enble with \"allow_unsafe_assigned_interrupts=1\""
		       " Re-enable with \"allow_unsafe_assigned_interrupts=1\""
		       " module option.\n", __func__);
		       " module option.\n", __func__);
		iommu_domain_free(kvm->arch.iommu_domain);
		iommu_domain_free(kvm->arch.iommu_domain);
		kvm->arch.iommu_domain = NULL;
		kvm->arch.iommu_domain = NULL;
+2 −2
Original line number Original line Diff line number Diff line
@@ -430,7 +430,7 @@ static int is_gpt_valid(struct parsed_partitions *state, u64 lba,
	}
	}
	/* Check that sizeof_partition_entry has the correct value */
	/* Check that sizeof_partition_entry has the correct value */
	if (le32_to_cpu((*gpt)->sizeof_partition_entry) != sizeof(gpt_entry)) {
	if (le32_to_cpu((*gpt)->sizeof_partition_entry) != sizeof(gpt_entry)) {
		pr_debug("GUID Partitition Entry Size check failed.\n");
		pr_debug("GUID Partition Entry Size check failed.\n");
		goto fail;
		goto fail;
	}
	}


@@ -443,7 +443,7 @@ static int is_gpt_valid(struct parsed_partitions *state, u64 lba,
			le32_to_cpu((*gpt)->sizeof_partition_entry));
			le32_to_cpu((*gpt)->sizeof_partition_entry));


	if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) {
	if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) {
		pr_debug("GUID Partitition Entry Array CRC check failed.\n");
		pr_debug("GUID Partition Entry Array CRC check failed.\n");
		goto fail_ptes;
		goto fail_ptes;
	}
	}


+1 −1
Original line number Original line Diff line number Diff line
@@ -645,7 +645,7 @@ static u64 sys_addr_to_input_addr(struct mem_ctl_info *mci, u64 sys_addr)
	input_addr =
	input_addr =
	    dram_addr_to_input_addr(mci, sys_addr_to_dram_addr(mci, sys_addr));
	    dram_addr_to_input_addr(mci, sys_addr_to_dram_addr(mci, sys_addr));


	edac_dbg(2, "SysAdddr 0x%lx translates to InputAddr 0x%lx\n",
	edac_dbg(2, "SysAddr 0x%lx translates to InputAddr 0x%lx\n",
		 (unsigned long)sys_addr, (unsigned long)input_addr);
		 (unsigned long)sys_addr, (unsigned long)input_addr);


	return input_addr;
	return input_addr;
+1 −1
Original line number Original line Diff line number Diff line
@@ -386,7 +386,7 @@ static int sm_write_block(struct sm_ftl *ftl, uint8_t *buf,
		if (test_bit(boffset / SM_SECTOR_SIZE, &invalid_bitmap)) {
		if (test_bit(boffset / SM_SECTOR_SIZE, &invalid_bitmap)) {


			sm_printk("sector %d of block at LBA %d of zone %d"
			sm_printk("sector %d of block at LBA %d of zone %d"
				" coudn't be read, marking it as invalid",
				" couldn't be read, marking it as invalid",
				boffset / SM_SECTOR_SIZE, lba, zone);
				boffset / SM_SECTOR_SIZE, lba, zone);


			oob.data_status = 0;
			oob.data_status = 0;
Loading