Skip to content

Commit 02b7d83

Browse files
anatoltorvalds
authored andcommitted
Fix typo in printed messages
Coult -> Could Signed-off-by: Linus Torvalds <[email protected]>
1 parent 104452f commit 02b7d83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arch/sparc/kernel/vio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ static int __init vio_init(void)
443443
root_vdev = vio_create_one(hp, root, NULL);
444444
err = -ENODEV;
445445
if (!root_vdev) {
446-
printk(KERN_ERR "VIO: Coult not create root device.\n");
446+
printk(KERN_ERR "VIO: Could not create root device.\n");
447447
goto out_release;
448448
}
449449

drivers/net/wireless/b43/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3767,7 +3767,7 @@ static int b43_switch_band(struct b43_wl *wl, struct ieee80211_channel *chan)
37673767
if (prev_status >= B43_STAT_STARTED) {
37683768
err = b43_wireless_core_start(up_dev);
37693769
if (err) {
3770-
b43err(wl, "Fatal: Coult not start device for "
3770+
b43err(wl, "Fatal: Could not start device for "
37713771
"selected %s-GHz band\n",
37723772
band_to_string(chan->band));
37733773
b43_wireless_core_exit(up_dev);

drivers/net/wireless/b43legacy/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2633,7 +2633,7 @@ static int b43legacy_switch_phymode(struct b43legacy_wl *wl,
26332633
if (prev_status >= B43legacy_STAT_STARTED) {
26342634
err = b43legacy_wireless_core_start(up_dev);
26352635
if (err) {
2636-
b43legacyerr(wl, "Fatal: Coult not start device for "
2636+
b43legacyerr(wl, "Fatal: Could not start device for "
26372637
"newly selected %s-PHY mode\n",
26382638
phymode_to_string(new_mode));
26392639
b43legacy_wireless_core_exit(up_dev);

0 commit comments

Comments
 (0)