mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 08:31:13 +00:00
qeth: Remove unused variable
Eliminate a variable that is never modified. Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com> Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com> Reviewed-by: Ursula Braun <ursula.braun@de.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c260b7722f
commit
7bf9bcff45
1 changed files with 1 additions and 2 deletions
|
@ -2280,7 +2280,6 @@ static int qeth_ulp_setup_cb(struct qeth_card *card, struct qeth_reply *reply,
|
||||||
unsigned long data)
|
unsigned long data)
|
||||||
{
|
{
|
||||||
struct qeth_cmd_buffer *iob;
|
struct qeth_cmd_buffer *iob;
|
||||||
int rc = 0;
|
|
||||||
|
|
||||||
QETH_DBF_TEXT(SETUP, 2, "ulpstpcb");
|
QETH_DBF_TEXT(SETUP, 2, "ulpstpcb");
|
||||||
|
|
||||||
|
@ -2296,7 +2295,7 @@ static int qeth_ulp_setup_cb(struct qeth_card *card, struct qeth_reply *reply,
|
||||||
iob->rc = -EMLINK;
|
iob->rc = -EMLINK;
|
||||||
}
|
}
|
||||||
QETH_DBF_TEXT_(SETUP, 2, " rc%d", iob->rc);
|
QETH_DBF_TEXT_(SETUP, 2, " rc%d", iob->rc);
|
||||||
return rc;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qeth_ulp_setup(struct qeth_card *card)
|
static int qeth_ulp_setup(struct qeth_card *card)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue