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

Commit c3cca2d1 authored by Wayne Porter's avatar Wayne Porter Committed by Greg Kroah-Hartman
Browse files

staging: rts5208: Unnecessary parentheses cleanup



Remove parentheses found by checkpatch

Signed-off-by: default avatarWayne Porter <wporter82@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5426c164
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,9 +32,9 @@ static inline void rtsx_exclusive_enter_ss(struct rtsx_chip *chip)
{
	struct rtsx_dev *dev = chip->rtsx;

	spin_lock(&(dev->reg_lock));
	spin_lock(&dev->reg_lock);
	rtsx_enter_ss(chip);
	spin_unlock(&(dev->reg_lock));
	spin_unlock(&dev->reg_lock);
}

static inline void rtsx_reset_detected_cards(struct rtsx_chip *chip, int flag)