[Patch net-next 1/4] net: fec: refine error handle of parser queue number from DT
David Miller
davem at davemloft.net
Mon Sep 15 14:32:47 PDT 2014
From: <Frank.Li at freescale.com>
Date: Tue, 16 Sep 2014 01:12:54 +0800
> - dev_err(&pdev->dev, "Invalidate num_tx(=%d), fail back to 1\n",
> + dev_warn(&pdev->dev, "Invalid num_tx(=%d), fall back to 1\n",
> *num_tx);
Any time you change the function name of a multi-line function call, you must
be mindful to adjust the indention of the subsequent argument lines, if
necessary.
> if (*num_rx < 1 || *num_rx > FEC_ENET_MAX_RX_QS) {
> - dev_err(&pdev->dev, "Invalidate num_rx(=%d), fail back to 1\n",
> + dev_warn(&pdev->dev, "Invalid num_rx(=%d), fall back to 1\n",
> *num_rx);
Likewise.
More information about the linux-arm-kernel
mailing list