summaryrefslogtreecommitdiff
path: root/drivers/staging/rts5139
diff options
context:
space:
mode:
authorPreetam D'Souza <preetamjdsouza@gmail.com>2013-12-13 19:13:47 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-17 09:50:11 -0800
commit262da1d91768bc3ba99c524d6580c7a92cdb6683 (patch)
tree2d4b2a440071bda2ecd0effa8cade1a88324bd34 /drivers/staging/rts5139
parentff7d18d48e568125c486ee700a016b60d2e4243f (diff)
Staging: rts5139: fix parantheses coding style issue in ms.c
This patch fixes an unnecessary return statement parantheses error found in ms.c by the checkpatch.pl tool. Signed-off-by: Preetam D'Souza <preetamjdsouza@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5139')
-rw-r--r--drivers/staging/rts5139/ms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rts5139/ms.c b/drivers/staging/rts5139/ms.c
index a27f7e224e0..9253f6ab2e0 100644
--- a/drivers/staging/rts5139/ms.c
+++ b/drivers/staging/rts5139/ms.c
@@ -48,7 +48,7 @@ static inline int ms_check_err_code(struct rts51x_chip *chip, u8 err_code)
{
struct ms_info *ms_card = &(chip->ms_card);
- return (ms_card->err_code == err_code);
+ return ms_card->err_code == err_code;
}
static int ms_parse_err_code(struct rts51x_chip *chip)