mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 14:42:34 -04:00
staging: ft1000: remove braces from one-line conditional
As per coding style,
braces {} are not necessary for single statement blocks
Signed-off-by: Kelley Nielsen <kelleynnn@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0c5e802c1c
commit
cfd9d1fad6
@@ -1201,9 +1201,8 @@ u16 scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart,
|
||||
break;
|
||||
} /* End Switch */
|
||||
|
||||
if (status != STATUS_SUCCESS) {
|
||||
if (status != STATUS_SUCCESS)
|
||||
break;
|
||||
}
|
||||
|
||||
/****
|
||||
// Check if Card is present
|
||||
|
||||
Reference in New Issue
Block a user