projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fac5913
)
[media] RedRat3: Delete an unnecessary variable initialisation in redrat3_get_firmwar...
author
Markus Elfring
<
[email protected]
>
Thu, 13 Oct 2016 11:21:55 +0000
(08:21 -0300)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Fri, 18 Nov 2016 12:50:46 +0000
(10:50 -0200)
The local variable "rc" will be set to an appropriate value a bit later.
Thus omit the explicit initialisation at the beginning.
Signed-off-by: Markus Elfring <
[email protected]
>
Signed-off-by: Mauro Carvalho Chehab <
[email protected]
>
drivers/media/rc/redrat3.c
patch
|
blob
|
history
diff --git
a/drivers/media/rc/redrat3.c
b/drivers/media/rc/redrat3.c
index 966f43a7e2c2ffacc14028a704206dfa4ff13be9..dc8b88a256f244cb16c53bb72412a48384d1ff88 100644
(file)
--- a/
drivers/media/rc/redrat3.c
+++ b/
drivers/media/rc/redrat3.c
@@
-581,7
+581,7
@@
static void redrat3_reset(struct redrat3_dev *rr3)
static void redrat3_get_firmware_rev(struct redrat3_dev *rr3)
{
- int rc
= 0
;
+ int rc;
char *buffer;
buffer = kcalloc(RR3_FW_VERSION_LEN + 1, sizeof(*buffer), GFP_KERNEL);