Skip to content

Commit

Permalink
treewide: Fix typo in printk
Browse files Browse the repository at this point in the history
Correct spelling typo within various part of the kernel

Signed-off-by: Masanari Iida <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
standby24x7 authored and Jiri Kosina committed Oct 14, 2013
1 parent 8c88126 commit 6d3be30
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion drivers/acpi/acpica/utobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/i2c/adv7183.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/i2c/s5c73m3/s5c73m3-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/nand/docg4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/mellanox/mlx4/fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1722,7 +1722,7 @@ static void qlcnic_extend_lb_idc_cmpltn_wait(struct qlcnic_adapter *adapter,
struct qlcnic_hardware_context *ahw = adapter->ahw;
int temp;

netdev_info(adapter->netdev, "Recieved loopback IDC time extend event for 0x%x seconds\n",
netdev_info(adapter->netdev, "Received loopback IDC time extend event for 0x%x seconds\n",
ahw->extend_lb_time);
temp = ahw->extend_lb_time * 1000;
*max_wait_count += temp / QLC_83XX_LB_MSLEEP_COUNT;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath10k/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -2306,7 +2306,7 @@ static int ath10k_pci_probe(struct pci_dev *pdev,
break;
default:
ret = -ENODEV;
ath10k_err("Unkown device ID: %d\n", pci_dev->device);
ath10k_err("Unknown device ID: %d\n", pci_dev->device);
goto err_ar_pci;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/regulator/tps65910-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ static int tps65910_set_ext_sleep_config(struct tps65910_reg *pmic,
}
ret = tps65910_reg_write(pmic->mfd, sr_reg_add, 0);
if (ret < 0) {
dev_err(mfd->dev, "Error in settting sr register\n");
dev_err(mfd->dev, "Error in setting sr register\n");
return ret;
}
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/mvsas/mv_sas.c
Original file line number Diff line number Diff line change
Expand Up @@ -1411,7 +1411,7 @@ static int mvs_exec_internal_tmf_task(struct domain_device *dev,

if (res) {
del_timer(&task->slow_task->timer);
mv_printk("executing internel task failed:%d\n", res);
mv_printk("executing internal task failed:%d\n", res);
goto ex_err;
}

Expand Down

0 comments on commit 6d3be30

Please sign in to comment.