Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: dgrp: Fix space prohibited before semicolon

This patch fixed "WARNING: space prohibited before semicoloni"
found by checkpatch.pl within dgrp_tty.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Masanari Iida and committed by
Greg Kroah-Hartman
ff7d18d4 8eec4555

+2 -2
+2 -2
drivers/staging/dgrp/dgrp_tty.c
··· 371 371 ch->ch_flag |= CH_BAUD0; 372 372 } 373 373 } else if (ch->ch_custom_speed) { 374 - ch->ch_brate = PORTSERVER_DIVIDEND / ch->ch_custom_speed ; 374 + ch->ch_brate = PORTSERVER_DIVIDEND / ch->ch_custom_speed; 375 375 376 376 if (ch->ch_flag & CH_BAUD0) { 377 377 ch->ch_mout |= DM_DTR | DM_RTS; ··· 752 752 753 753 if (ch->ch_open_error != 0 && otype == ch->ch_otype) { 754 754 retval = (ch->ch_open_error <= 2) ? 755 - delay_error : -ENXIO ; 755 + delay_error : -ENXIO; 756 756 goto unlock; 757 757 } 758 758