diff options
author | Gulsah Kose <gulsah.1004@gmail.com> | 2014-09-30 20:32:06 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-02 10:13:37 -0700 |
commit | 3636ce82dbec023a775246a2d395744ed1f03f07 (patch) | |
tree | cd1a27f59c5bdb0744a191a3620a16e046dc7569 /drivers/staging/ft1000 | |
parent | 6254e1c06231259357b811c934ded22a2fd9f763 (diff) |
staging: ft1000: ft1000-usb: Removed unnecessary parentheses.
This patch fixes "Unnecessary parentheses" checkpatch.pl warning in
ft1000_hw.c
Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ft1000')
-rw-r--r-- | drivers/staging/ft1000/ft1000-usb/ft1000_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c b/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c index fa82d4f3523e..36a3ffeb2d64 100644 --- a/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c +++ b/drivers/staging/ft1000/ft1000-usb/ft1000_hw.c @@ -1040,7 +1040,7 @@ static bool ft1000_receive_cmd(struct ft1000_usb *dev, u16 *pbuffer, for (i = 1; i < 7; i++) tempword ^= *ppseudohdr++; - if ((tempword != *ppseudohdr)) + if (tempword != *ppseudohdr) return FALSE; return TRUE; |