mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 22:21:42 +00:00
treewide: Fix typos in printk
This patch fix some spelling typos found in printk. [jkosina@suse.cz: drop arch/arm64/kernel/hibernate.c that was already in place] Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
97da3854c5
commit
0a95160ed3
@ -89,7 +89,7 @@ static int sti_compositor_bind(struct device *dev,
|
||||
/* Nothing to do, wait for the second round */
|
||||
break;
|
||||
default:
|
||||
DRM_ERROR("Unknow subdev compoment type\n");
|
||||
DRM_ERROR("Unknown subdev component type\n");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -404,6 +404,6 @@ struct dvb_frontend *horus3a_attach(struct dvb_frontend *fe,
|
||||
}
|
||||
EXPORT_SYMBOL(horus3a_attach);
|
||||
|
||||
MODULE_DESCRIPTION("Sony HORUS3A sattelite tuner driver");
|
||||
MODULE_DESCRIPTION("Sony HORUS3A satellite tuner driver");
|
||||
MODULE_AUTHOR("Sergey Kozlov <serjk@netup.ru>");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -589,7 +589,7 @@ int vpu_load_firmware(struct platform_device *pdev)
|
||||
);
|
||||
if (ret == 0) {
|
||||
ret = -ETIME;
|
||||
dev_err(dev, "wait vpu initialization timout!\n");
|
||||
dev_err(dev, "wait vpu initialization timeout!\n");
|
||||
goto OUT_LOAD_FW;
|
||||
} else if (-ERESTARTSYS == ret) {
|
||||
dev_err(dev, "wait vpu interrupted by a signal!\n");
|
||||
|
@ -343,7 +343,7 @@ static int transfer_image(struct cxl *adapter, int operation,
|
||||
return rc;
|
||||
}
|
||||
if (rc == 0) {
|
||||
pr_devel("remove curent afu\n");
|
||||
pr_devel("remove current afu\n");
|
||||
for (afu = 0; afu < adapter->slices; afu++)
|
||||
cxl_guest_remove_afu(adapter->afu[afu]);
|
||||
|
||||
|
@ -2115,7 +2115,7 @@ static enum version_8821ae _rtl8821ae_read_chip_version(struct ieee80211_hw *hw)
|
||||
break;
|
||||
default:
|
||||
RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
|
||||
"Chip Version ID: Unknow (0x%X)\n", version);
|
||||
"Chip Version ID: Unknown (0x%X)\n", version);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -241,7 +241,7 @@ static void amd_gpio_dbg_show(struct seq_file *s, struct gpio_chip *gc)
|
||||
pin_reg & BIT(ACTIVE_LEVEL_OFF + 1))
|
||||
active_level = "Active on both|";
|
||||
else
|
||||
active_level = "Unknow Active level|";
|
||||
active_level = "Unknown Active level|";
|
||||
|
||||
if (pin_reg & BIT(LEVEL_TRIG_OFF))
|
||||
level_trig = "Level trigger|";
|
||||
|
@ -1066,7 +1066,7 @@ ioctl_hba_rst:
|
||||
if (!snic->remove_wait) {
|
||||
spin_unlock_irqrestore(io_lock, flags);
|
||||
SNIC_HOST_ERR(snic->shost,
|
||||
"reset_cmpl:host reset completed after timout\n");
|
||||
"reset_cmpl:host reset completed after timeout\n");
|
||||
ret = 1;
|
||||
|
||||
return ret;
|
||||
|
@ -486,7 +486,7 @@ __cmd_probe(int argc, const char **argv, const char *prefix __maybe_unused)
|
||||
OPT_INCR('v', "verbose", &verbose,
|
||||
"be more verbose (show parsed arguments, etc)"),
|
||||
OPT_BOOLEAN('q', "quiet", ¶ms.quiet,
|
||||
"be quiet (do not show any mesages)"),
|
||||
"be quiet (do not show any messages)"),
|
||||
OPT_CALLBACK_DEFAULT('l', "list", NULL, "[GROUP:]EVENT",
|
||||
"list up probe events",
|
||||
opt_set_filter_with_command, DEFAULT_LIST_FILTER),
|
||||
|
Loading…
Reference in New Issue
Block a user