* [patch] Staging: lirc: remove unneeded variable
@ 2010-08-10 6:11 Dan Carpenter
2010-08-12 2:46 ` Jarod Wilson
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Dan Carpenter @ 2010-08-10 6:11 UTC (permalink / raw)
To: kernel-janitors
We never use control_req so I removed it.
Signed-off-by: Dan Carpenter <error27@gmail.com>
diff --git a/drivers/staging/lirc/lirc_imon.c b/drivers/staging/lirc/lirc_imon.c
index 6649325..cb5699c 100644
--- a/drivers/staging/lirc/lirc_imon.c
+++ b/drivers/staging/lirc/lirc_imon.c
@@ -320,7 +320,6 @@ static int send_packet(struct imon_context *context)
unsigned int pipe;
int interval = 0;
int retval = 0;
- struct usb_ctrlrequest *control_req = NULL;
/* Check if we need to use control or interrupt urb */
pipe = usb_sndintpipe(context->usbdev,
@@ -355,8 +354,6 @@ static int send_packet(struct imon_context *context)
err("%s: packet tx failed (%d)", __func__, retval);
}
- kfree(control_req);
-
return retval;
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [patch] Staging: lirc: remove unneeded variable
2010-08-10 6:11 [patch] Staging: lirc: remove unneeded variable Dan Carpenter
@ 2010-08-12 2:46 ` Jarod Wilson
2010-08-13 13:38 ` Dan Carpenter
2010-08-17 21:41 ` Jarod Wilson
2 siblings, 0 replies; 4+ messages in thread
From: Jarod Wilson @ 2010-08-12 2:46 UTC (permalink / raw)
To: kernel-janitors
On Tue, Aug 10, 2010 at 08:11:20AM +0200, Dan Carpenter wrote:
> We never use control_req so I removed it.
>
> Signed-off-by: Dan Carpenter <error27@gmail.com>
Leftover cruft from when lirc_imon also supported the devices now covered
by the ir-core imon driver.
Acked-by: Jarod Wilson <jarod@redhat.com>
--
Jarod Wilson
jarod@redhat.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] Staging: lirc: remove unneeded variable
2010-08-10 6:11 [patch] Staging: lirc: remove unneeded variable Dan Carpenter
2010-08-12 2:46 ` Jarod Wilson
@ 2010-08-13 13:38 ` Dan Carpenter
2010-08-17 21:41 ` Jarod Wilson
2 siblings, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2010-08-13 13:38 UTC (permalink / raw)
To: kernel-janitors
On Wed, Aug 11, 2010 at 10:46:47PM -0400, Jarod Wilson wrote:
> On Tue, Aug 10, 2010 at 08:11:20AM +0200, Dan Carpenter wrote:
> > We never use control_req so I removed it.
> >
> > Signed-off-by: Dan Carpenter <error27@gmail.com>
>
> Leftover cruft from when lirc_imon also supported the devices now covered
> by the ir-core imon driver.
>
Speak of left over stuff, it's weird that I didn't notice this before
but gcc complains about an unitialized variable in
imon_incoming_packet().
drivers/staging/lirc/lirc_imon.c: In function ‘imon_incoming_packet’:
drivers/staging/lirc/lirc_imon.c:661: warning: ‘chunk_num’ may be used
uninitialized in this function
I don't know how to fix that, but it looks important.
regards,
dan carpenter
> Acked-by: Jarod Wilson <jarod@redhat.com>
>
>
> --
> Jarod Wilson
> jarod@redhat.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] Staging: lirc: remove unneeded variable
2010-08-10 6:11 [patch] Staging: lirc: remove unneeded variable Dan Carpenter
2010-08-12 2:46 ` Jarod Wilson
2010-08-13 13:38 ` Dan Carpenter
@ 2010-08-17 21:41 ` Jarod Wilson
2 siblings, 0 replies; 4+ messages in thread
From: Jarod Wilson @ 2010-08-17 21:41 UTC (permalink / raw)
To: kernel-janitors
On Fri, Aug 13, 2010 at 03:38:40PM +0200, Dan Carpenter wrote:
> On Wed, Aug 11, 2010 at 10:46:47PM -0400, Jarod Wilson wrote:
> > On Tue, Aug 10, 2010 at 08:11:20AM +0200, Dan Carpenter wrote:
> > > We never use control_req so I removed it.
> > >
> > > Signed-off-by: Dan Carpenter <error27@gmail.com>
> >
> > Leftover cruft from when lirc_imon also supported the devices now covered
> > by the ir-core imon driver.
> >
>
> Speak of left over stuff, it's weird that I didn't notice this before
> but gcc complains about an unitialized variable in
> imon_incoming_packet().
>
> drivers/staging/lirc/lirc_imon.c: In function ‘imon_incoming_packet’:
> drivers/staging/lirc/lirc_imon.c:661: warning: ‘chunk_num’ may be used
> uninitialized in this function
>
> I don't know how to fix that, but it looks important.
Ew. Yeah, that doesn't look so hot like it is right now. The old lirc_imon
driver had chunk_num = buf[7], and made much more extensive use of
chunk_num. Simply removing chunk_num and using buf[7] should be fine.
Signed-off-by: Jarod Wilson <jarod@redhat.com>
---
drivers/staging/lirc/lirc_imon.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/lirc/lirc_imon.c b/drivers/staging/lirc/lirc_imon.c
index 6649325..2351c88 100644
--- a/drivers/staging/lirc/lirc_imon.c
+++ b/drivers/staging/lirc/lirc_imon.c
@@ -599,7 +599,7 @@ static void imon_incoming_packet(struct imon_context *context,
struct device *dev = context->driver->dev;
int octet, bit;
unsigned char mask;
- int i, chunk_num;
+ int i;
/*
* just bail out if no listening IR client
@@ -658,7 +658,7 @@ static void imon_incoming_packet(struct imon_context *context,
}
}
- if (chunk_num = 10) {
+ if (buf[7] = 10) {
if (context->rx.count) {
submit_data(context);
context->rx.count = 0;
--
Jarod Wilson
jarod@redhat.com
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-08-17 21:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-10 6:11 [patch] Staging: lirc: remove unneeded variable Dan Carpenter
2010-08-12 2:46 ` Jarod Wilson
2010-08-13 13:38 ` Dan Carpenter
2010-08-17 21:41 ` Jarod Wilson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).