Commit bb3a4dc3 authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman
Browse files

staging: media: lirc: lirc_imon.c: remove extra parentheses around function arguments



Removes extra parentheses around function arguments. Issue
detected and resolved using the following coccinelle script:

@@
expression e;
identifier f;
@@

f(...,
&
-(
e
-)
,...)

Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 975da35f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -337,11 +337,11 @@ static int send_packet(struct imon_context *context)
	context->tx_urb->actual_length = 0;

	init_completion(&context->tx.finished);
	atomic_set(&(context->tx.busy), 1);
	atomic_set(&context->tx.busy, 1);

	retval = usb_submit_urb(context->tx_urb, GFP_KERNEL);
	if (retval) {
		atomic_set(&(context->tx.busy), 0);
		atomic_set(&context->tx.busy, 0);
		dev_err(&context->usbdev->dev, "error submitting urb(%d)\n",
			retval);
	} else {