From: Gulsah Kose Date: Wed, 12 Mar 2014 19:13:53 +0000 (+0200) Subject: staging: rts5208: Remove unnecessary parentheses. X-Git-Tag: v3.15-rc1~139^2~417 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0dedbf9f566be034bad6c703afbec35b4aaf97d8;p=karo-tx-linux.git staging: rts5208: Remove unnecessary parentheses. Return is not a method and doesn't need parentheses. Removed unnecaasary parentheses. Signed-off-by: Gulsah Kose Acked-by: Paul E. McKenney Signed-off-by: Peter P Waskiewicz Jr --- diff --git a/drivers/staging/rts5208/rtsx_card.c b/drivers/staging/rts5208/rtsx_card.c index 3055eb10c076..941ea1be14c4 100644 --- a/drivers/staging/rts5208/rtsx_card.c +++ b/drivers/staging/rts5208/rtsx_card.c @@ -624,7 +624,7 @@ void rtsx_init_cards(struct rtsx_chip *chip) static inline u8 double_depth(u8 depth) { - return ((depth > 1) ? (depth - 1) : depth); + return (depth > 1) ? (depth - 1) : depth; } int switch_ssc_clock(struct rtsx_chip *chip, int clk)