Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1199595
| From | "Karajgaonkar, Saurabh (S.)" <skarajga@visteon.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 9/9] usb: misc: ftdi-elan: Simplify return statement |
| Date | 2015-08-04 11:20 +0200 |
| Message-ID | <pTGy6-6co-5@gated-at.bofh.it> (permalink) |
| References | <pTGy6-6co-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Saurabh Karajgaonkar <skarajga@visteon.com>
Replace redundant variable use in return statement.
Signed-off-by: Saurabh Karajgaonkar <skarajga@visteon.com>
---
drivers/usb/misc/ftdi-elan.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/drivers/usb/misc/ftdi-elan.c b/drivers/usb/misc/ftdi-elan.c
index 8ab1f8f..1545f12 100644
--- a/drivers/usb/misc/ftdi-elan.c
+++ b/drivers/usb/misc/ftdi-elan.c
@@ -2568,11 +2568,8 @@ static int ftdi_elan_close_controller(struct usb_ftdi *ftdi, int fn)
0x00);
if (UxxxStatus)
return UxxxStatus;
- UxxxStatus = ftdi_elan_read_config(ftdi, activePCIfn | reg, 0,
+ return ftdi_elan_read_config(ftdi, activePCIfn | reg, 0,
&pcidata);
- if (UxxxStatus)
- return UxxxStatus;
- return 0;
}
static int ftdi_elan_found_controller(struct usb_ftdi *ftdi, int fn, int quirk)
@@ -2695,11 +2692,8 @@ static int ftdi_elan_setupOHCI(struct usb_ftdi *ftdi)
}
}
if (ftdi->function > 0) {
- UxxxStatus = ftdi_elan_setup_controller(ftdi,
+ return ftdi_elan_setup_controller(ftdi,
ftdi->function - 1);
- if (UxxxStatus)
- return UxxxStatus;
- return 0;
} else if (controllers > 0) {
return -ENXIO;
} else if (unrecognized > 0) {
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 9/9] usb: misc: ftdi-elan: Simplify return statement "Karajgaonkar, Saurabh (S.)" <skarajga@visteon.com> - 2015-08-04 11:20 +0200 Re: [PATCH 9/9] usb: misc: ftdi-elan: Simplify return statement Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2015-08-04 12:10 +0200
csiph-web