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

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

treewide: Fix typo in printk



Correct spelling typo within various part of the kernel

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 8c88126b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -356,7 +356,7 @@ u8 acpi_ut_valid_internal_object(void *object)
	default:

		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
				  "%p is not not an ACPI operand obj [%s]\n",
				  "%p is not an ACPI operand obj [%s]\n",
				  object, acpi_ut_get_descriptor_name(object)));
		break;
	}
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ static int adv7183_log_status(struct v4l2_subdev *sd)
			adv7183_read(sd, ADV7183_VS_FIELD_CTRL_1),
			adv7183_read(sd, ADV7183_VS_FIELD_CTRL_2),
			adv7183_read(sd, ADV7183_VS_FIELD_CTRL_3));
	v4l2_info(sd, "adv7183: Hsync positon control 1 2 and 3 = 0x%02x 0x%02x 0x%02x\n",
	v4l2_info(sd, "adv7183: Hsync position control 1 2 and 3 = 0x%02x 0x%02x 0x%02x\n",
			adv7183_read(sd, ADV7183_HS_POS_CTRL_1),
			adv7183_read(sd, ADV7183_HS_POS_CTRL_2),
			adv7183_read(sd, ADV7183_HS_POS_CTRL_3));
+1 −1
Original line number Diff line number Diff line
@@ -1651,7 +1651,7 @@ static int s5c73m3_probe(struct i2c_client *client,
	if (ret < 0)
		goto out_err;

	v4l2_info(sd, "%s: completed succesfully\n", __func__);
	v4l2_info(sd, "%s: completed successfully\n", __func__);
	return 0;

out_err:
+1 −1
Original line number Diff line number Diff line
@@ -494,7 +494,7 @@ static uint8_t docg4_read_byte(struct mtd_info *mtd)
		return status;
	}

	dev_warn(doc->dev, "unexpectd call to read_byte()\n");
	dev_warn(doc->dev, "unexpected call to read_byte()\n");

	return 0;
}
+1 −1
Original line number Diff line number Diff line
@@ -1739,7 +1739,7 @@ void mlx4_opreq_action(struct work_struct *work)
				   MLX4_CMD_GET_OP_REQ, MLX4_CMD_TIME_CLASS_A,
				   MLX4_CMD_NATIVE);
		if (err) {
			mlx4_err(dev, "Failed to retreive required operation: %d\n",
			mlx4_err(dev, "Failed to retrieve required operation: %d\n",
				 err);
			return;
		}
Loading