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

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

treewide: Fix typo in printk and comments



Fix typo in printk and comments within various drivers.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 372c1d6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -613,7 +613,7 @@ static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run,


		if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers)
		if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers)
		    || !arm_exit_handlers[hsr_ec]) {
		    || !arm_exit_handlers[hsr_ec]) {
			kvm_err("Unkown exception class: %#08lx, "
			kvm_err("Unknown exception class: %#08lx, "
				"hsr: %#08x\n", hsr_ec,
				"hsr: %#08x\n", hsr_ec,
				(unsigned int)vcpu->arch.hsr);
				(unsigned int)vcpu->arch.hsr);
			BUG();
			BUG();
+2 −2
Original line number Original line Diff line number Diff line
@@ -591,7 +591,7 @@ static int bnx2x_dcbx_read_shmem_remote_mib(struct bnx2x *bp)
				 DCBX_READ_REMOTE_MIB);
				 DCBX_READ_REMOTE_MIB);


	if (rc) {
	if (rc) {
		BNX2X_ERR("Faild to read remote mib from FW\n");
		BNX2X_ERR("Failed to read remote mib from FW\n");
		return rc;
		return rc;
	}
	}


@@ -619,7 +619,7 @@ static int bnx2x_dcbx_read_shmem_neg_results(struct bnx2x *bp)
				 DCBX_READ_LOCAL_MIB);
				 DCBX_READ_LOCAL_MIB);


	if (rc) {
	if (rc) {
		BNX2X_ERR("Faild to read local mib from FW\n");
		BNX2X_ERR("Failed to read local mib from FW\n");
		return rc;
		return rc;
	}
	}


+1 −1
Original line number Original line Diff line number Diff line
@@ -59,7 +59,7 @@ static const char *rproc_crash_to_string(enum rproc_crash_type type)
{
{
	if (type < ARRAY_SIZE(rproc_crash_names))
	if (type < ARRAY_SIZE(rproc_crash_names))
		return rproc_crash_names[type];
		return rproc_crash_names[type];
	return "unkown";
	return "unknown";
}
}


/*
/*
+1 −1
Original line number Original line Diff line number Diff line
@@ -369,7 +369,7 @@ beiscsi_set_vlan_tag(struct Scsi_Host *shost,
		break;
		break;
	default:
	default:
		beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
		beiscsi_log(phba, KERN_WARNING, BEISCSI_LOG_CONFIG,
			    "BS_%d : Unkown Param Type : %d\n",
			    "BS_%d : Unknown Param Type : %d\n",
			    iface_param->param);
			    iface_param->param);
		return -ENOSYS;
		return -ENOSYS;
	}
	}
+1 −1
Original line number Original line Diff line number Diff line
@@ -1292,7 +1292,7 @@ beiscsi_adap_family_disp(struct device *dev, struct device_attribute *attr,
		break;
		break;
	default:
	default:
		return snprintf(buf, PAGE_SIZE,
		return snprintf(buf, PAGE_SIZE,
				"Unkown Adapter Family: 0x%x\n", dev_id);
				"Unknown Adapter Family: 0x%x\n", dev_id);
		break;
		break;
	}
	}
}
}
Loading