Re: [PATCH 2/2] s390: Remove unneeded variables

From: Heiko Carstens
Date: Wed Aug 05 2015 - 03:05:36 EST


On Tue, Aug 04, 2015 at 05:11:47PM +0200, Peter Senna Tschudin wrote:
> This patch remove unneeded variables used to store return values.
>
> These issues were detected with the Coccinelle script:
> scripts/coccinelle/misc/returnvar.cocci
>
> Signed-off-by: Peter Senna Tschudin <peter.senna@xxxxxxxxx>
> ---
> static struct css_device_id eadm_subchannel_ids[] = {
> diff --git a/drivers/s390/net/qeth_l2_main.c b/drivers/s390/net/qeth_l2_main.c
> index 2e65b98..a79d698 100644
> --- a/drivers/s390/net/qeth_l2_main.c
> +++ b/drivers/s390/net/qeth_l2_main.c
> @@ -392,8 +392,6 @@ static int qeth_l2_vlan_rx_kill_vid(struct net_device *dev,
>
> static int qeth_l2_stop_card(struct qeth_card *card, int recovery_mode)
> {
> - int rc = 0;
> -
> QETH_DBF_TEXT(SETUP , 2, "stopcard");
> QETH_DBF_HEX(SETUP, 2, &card, sizeof(void *));
>
> @@ -427,7 +425,8 @@ static int qeth_l2_stop_card(struct qeth_card *card, int recovery_mode)
> qeth_clear_cmd_buffers(&card->read);
> qeth_clear_cmd_buffers(&card->write);
> }
> - return rc;
> +
> + return 0;
> }
>
> static int qeth_l2_process_inbound_buffer(struct qeth_card *card,
> diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
> index 70eb2f6..ee5e2ac 100644
> --- a/drivers/s390/net/qeth_l3_main.c
> +++ b/drivers/s390/net/qeth_l3_main.c
> @@ -2160,8 +2160,6 @@ static struct qeth_card *qeth_l3_get_card_from_dev(struct net_device *dev)
>
> static int qeth_l3_stop_card(struct qeth_card *card, int recovery_mode)
> {
> - int rc = 0;
> -
> QETH_DBF_TEXT(SETUP, 2, "stopcard");
> QETH_DBF_HEX(SETUP, 2, &card, sizeof(void *));
>
> @@ -2196,7 +2194,8 @@ static int qeth_l3_stop_card(struct qeth_card *card, int recovery_mode)
> qeth_clear_cmd_buffers(&card->read);
> qeth_clear_cmd_buffers(&card->write);
> }
> - return rc;
> +
> + return 0;

Applied. However I changed your patch a bit and made the *_stop_card()
functions return void instead, since the calling functions didn't care
anyway.

Thanks!

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/