Commit 30fb3598 authored by Colin Ian King's avatar Colin Ian King Committed by Jakub Kicinski
Browse files

net: ethernet: ti: Fix spelling mistake and clean up message



There is a spelling mistake in a dev_err message and the MAX_SKB_FRAGS
value does not need to be printed between parentheses. Fix this.

Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20220316233455.54541-1-colin.i.king@gmail.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 8624a95e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2082,7 +2082,7 @@ static int netcp_create_interface(struct netcp_device *netcp_device,
	netcp->tx_pool_region_id = temp[1];

	if (netcp->tx_pool_size < MAX_SKB_FRAGS) {
		dev_err(dev, "tx-pool size too small, must be atleast(%ld)\n",
		dev_err(dev, "tx-pool size too small, must be at least %ld\n",
			MAX_SKB_FRAGS);
		ret = -ENODEV;
		goto quit;