Skip to content

Commit

Permalink
USB: serial: keyspan: Removed unrequired parentheses.
Browse files Browse the repository at this point in the history
Changes to conform with checkpatch.sh script. - return is not a
function, parentheses not required. Removed 1 checkpatch.sh error.

Signed-off-by: Ben Minerds <puzzleduck@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ben Minerds authored and Greg Kroah-Hartman committed Jul 17, 2012
1 parent 878b5fd commit f9943c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/serial/keyspan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ static int keyspan_fake_startup(struct usb_serial *serial)

if (request_ihex_firmware(&fw, fw_name, &serial->dev->dev)) {
dev_err(&serial->dev->dev, "Required keyspan firmware image (%s) unavailable.\n", fw_name);
return(1);
return 1;
}

dbg("Uploading Keyspan %s firmware.", fw_name);
Expand Down

0 comments on commit f9943c2

Please sign in to comment.