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

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

treewide: Fix typo in printk



This patch fix spelling typos found in printk and Kconfig.

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 bcf4299e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -168,7 +168,7 @@ static char *res_strings[] = {
	"reserved 14", 
	"Unrecognized cell", 
	"reserved 16", 
	"reassemby abort: AAL5 abort", 
	"reassembly abort: AAL5 abort", 
	"packet purged", 
	"packet ageing timeout", 
	"channel ageing timeout", 
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ int nx842_crypto_compress(struct crypto_tfm *tfm,
		h = !n && add_header ? hdrsize : 0;

		if (ignore)
			pr_warn("interal error, ignore is set %x\n", ignore);
			pr_warn("internal error, ignore is set %x\n", ignore);

		ret = compress(ctx, &p, &hdr->group[n], &c, &ignore, h);
		if (ret)
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ const char *usnic_ib_qp_grp_state_to_string(enum ib_qp_state state)
	case IB_QPS_ERR:
		return "ERR";
	default:
		return "UNKOWN STATE";
		return "UNKNOWN STATE";

	}
}
+1 −1
Original line number Diff line number Diff line
@@ -848,7 +848,7 @@ static int wdt87xx_do_update_firmware(struct i2c_client *client,
	error = wdt87xx_get_sysparam(client, &wdt->param);
	if (error)
		dev_err(&client->dev,
			"failed to refresh system paramaters: %d\n", error);
			"failed to refresh system parameters: %d\n", error);
out:
	enable_irq(client->irq);
	mutex_unlock(&wdt->fw_mutex);
+1 −1
Original line number Diff line number Diff line
@@ -1038,7 +1038,7 @@ static int w90p910_ether_probe(struct platform_device *pdev)

	error = register_netdev(dev);
	if (error != 0) {
		dev_err(&pdev->dev, "Regiter EMC w90p910 FAILED\n");
		dev_err(&pdev->dev, "Register EMC w90p910 FAILED\n");
		error = -ENODEV;
		goto failed_put_rmiiclk;
	}
Loading