Staging: tty: epca: fixing return code-style issue

Fixed a coding-style issue, ``return'' with parens.

Signed-off-by: Aviv Ben-Yosef <aviv.by@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Aviv Ben-Yosef 2011-06-04 05:09:33 -07:00 committed by Greg Kroah-Hartman
parent 562d683cc7
commit 9d17653c72

View File

@ -792,7 +792,7 @@ static int pc_open(struct tty_struct *tty, struct file *filp)
}
if (boardnum >= num_cards || boards[boardnum].status == DISABLED) {
tty->driver_data = NULL; /* Mark this device as 'down' */
return(-ENODEV);
return -ENODEV;
}
bc = ch->brdchan;