]> rtime.felk.cvut.cz Git - zynq/linux.git/commitdiff
net: fec: no need to test for the return type of of_property_read_u32
authorSaurabh Sengar <saurabh.truth@gmail.com>
Mon, 23 Nov 2015 13:51:48 +0000 (19:21 +0530)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Nov 2015 21:09:47 +0000 (16:09 -0500)
in case of error no need to set num_tx and num_rx = 1, because in case of error
these variables will remain unchanged by of_property_read_u32 ie 1 only

Signed-off-by: Saurabh Sengar <saurabh.truth@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/fec_main.c

index b2a32209ffbfc2806d725d7924b470d2752e03d5..d2328fc5da57f0c06b0f9f6244324de371fa81c4 100644 (file)
@@ -3277,7 +3277,6 @@ static void
 fec_enet_get_queue_num(struct platform_device *pdev, int *num_tx, int *num_rx)
 {
        struct device_node *np = pdev->dev.of_node;
-       int err;
 
        *num_tx = *num_rx = 1;
 
@@ -3285,13 +3284,9 @@ fec_enet_get_queue_num(struct platform_device *pdev, int *num_tx, int *num_rx)
                return;
 
        /* parse the num of tx and rx queues */
-       err = of_property_read_u32(np, "fsl,num-tx-queues", num_tx);
-       if (err)
-               *num_tx = 1;
+       of_property_read_u32(np, "fsl,num-tx-queues", num_tx);
 
-       err = of_property_read_u32(np, "fsl,num-rx-queues", num_rx);
-       if (err)
-               *num_rx = 1;
+       of_property_read_u32(np, "fsl,num-rx-queues", num_rx);
 
        if (*num_tx < 1 || *num_tx > FEC_ENET_MAX_TX_QS) {
                dev_warn(&pdev->dev, "Invalid num_tx(=%d), fall back to 1\n",