2015-02-23 21:32:15

by Vince Bridgers

[permalink] [raw]
Subject: [PATCH net-next] altera_tse: Correct typo in obtaining tx_fifo_depth from devicetree

From: Vlastimil Setka <[email protected]>

This patch corrects a typo in the way tx_fifo_depth is read from the
devicetree. This patch was submitted by Vlastimil about a week ago,
and is now cleaned up and resubmitted.

Signed-off-by: Vlastimil Setka <[email protected]>
Signed-off-by: Vince Bridgers <[email protected]>
---
drivers/net/ethernet/altera/altera_tse_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/altera/altera_tse_main.c b/drivers/net/ethernet/altera/altera_tse_main.c
index a1ee261..91ad435 100644
--- a/drivers/net/ethernet/altera/altera_tse_main.c
+++ b/drivers/net/ethernet/altera/altera_tse_main.c
@@ -1407,7 +1407,7 @@ static int altera_tse_probe(struct platform_device *pdev)
}

if (of_property_read_u32(pdev->dev.of_node, "tx-fifo-depth",
- &priv->rx_fifo_depth)) {
+ &priv->tx_fifo_depth)) {
dev_err(&pdev->dev, "cannot obtain tx-fifo-depth\n");
ret = -ENXIO;
goto err_free_netdev;
--
1.9.1


2015-02-23 23:07:59

by David Miller

[permalink] [raw]
Subject: Re: [PATCH net-next] altera_tse: Correct typo in obtaining tx_fifo_depth from devicetree

From: Vince Bridgers <[email protected]>
Date: Mon, 23 Feb 2015 11:27:37 -0600

> From: Vlastimil Setka <[email protected]>
>
> This patch corrects a typo in the way tx_fifo_depth is read from the
> devicetree. This patch was submitted by Vlastimil about a week ago,
> and is now cleaned up and resubmitted.
>
> Signed-off-by: Vlastimil Setka <[email protected]>
> Signed-off-by: Vince Bridgers <[email protected]>

This is a bug fix, so I'm applying it to 'net'.

Thanks.