Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0dedbf9f authored by Gulsah Kose's avatar Gulsah Kose Committed by Peter P Waskiewicz Jr
Browse files

staging: rts5208: Remove unnecessary parentheses.



Return is not a method and doesn't need parentheses. Removed unnecaasary
parentheses.

Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Acked-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent cb90e78d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)