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: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20220316233455.54541-1-colin.i.king@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
8624a95ecd
commit
30fb35989d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue