Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1163125
| From | "Abdul, Hussain (H.)" <habdul@visteon.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] staging: unisys: Remove unneeded variable |
| Date | 2015-06-11 12:40 +0200 |
| Message-ID | <pA83T-30J-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This patch remove unneeded variable used to store return value.
Signed-off-by: Abdul Hussain <habdul@visteon.com>
---
drivers/staging/unisys/visorbus/visorbus_main.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus/visorbus_main.c
index c7db681..bceec88 100644
--- a/drivers/staging/unisys/visorbus/visorbus_main.c
+++ b/drivers/staging/unisys/visorbus/visorbus_main.c
@@ -835,7 +835,6 @@ away:
static int
visordriver_remove_device(struct device *xdev)
{
- int rc = 0;
struct visor_device *dev;
struct visor_driver *drv;
@@ -858,7 +857,7 @@ visordriver_remove_device(struct device *xdev)
put_device(&dev->device);
- return rc;
+ return 0;
}
/** A particular type of visor driver calls this function to register
--
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 | Find similar | Unroll thread
[PATCH] staging: unisys: Remove unneeded variable "Abdul, Hussain (H.)" <habdul@visteon.com> - 2015-06-11 12:40 +0200
csiph-web