summaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/dvb-usb-v2
diff options
context:
space:
mode:
authorRasmus Villemoes2016-11-30 22:39:10 +0100
committerMauro Carvalho Chehab2017-02-03 10:39:36 +0100
commit75759e31e6e7f38625510a89fe580374a75db9f4 (patch)
tree78ec4790a55d11830261bbb0d10d1362922562cc /drivers/media/usb/dvb-usb-v2
parent[media] lmedm04: use %phN for hex dump (diff)
downloadkernel-qcow2-linux-75759e31e6e7f38625510a89fe580374a75db9f4.tar.gz
kernel-qcow2-linux-75759e31e6e7f38625510a89fe580374a75db9f4.tar.xz
kernel-qcow2-linux-75759e31e6e7f38625510a89fe580374a75db9f4.zip
[media] lmedm04: change some static variables to automatic
ibuf and rbuf in lme2510_int_response are always assigned to before they are read, and their addresses do not escape the function, so they have no reason to be static. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb-v2')
-rw-r--r--drivers/media/usb/dvb-usb-v2/lmedm04.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/lmedm04.c b/drivers/media/usb/dvb-usb-v2/lmedm04.c
index 360cb62ee21d..5a327676e235 100644
--- a/drivers/media/usb/dvb-usb-v2/lmedm04.c
+++ b/drivers/media/usb/dvb-usb-v2/lmedm04.c
@@ -309,7 +309,7 @@ static void lme2510_int_response(struct urb *lme_urb)
{
struct dvb_usb_adapter *adap = lme_urb->context;
struct lme2510_state *st = adap_to_priv(adap);
- static u8 *ibuf, *rbuf;
+ u8 *ibuf, *rbuf;
int i = 0, offset;
u32 key;
u8 signal_lock = 0;