diff options
author | Wayne Porter <wporter82@gmail.com> | 2016-10-11 21:56:27 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-10-16 10:26:45 +0200 |
commit | c3cca2d1b434143d801592e98c71b9ef63f4f044 (patch) | |
tree | 29369cfc9e2dc277f146e1e046082d7187478582 /drivers | |
parent | 5426c164ff83ebe4ffc71bf2bdcc4efd7d4e17a5 (diff) | |
download | linux-c3cca2d1b434143d801592e98c71b9ef63f4f044.tar.bz2 |
staging: rts5208: Unnecessary parentheses cleanup
Remove parentheses found by checkpatch
Signed-off-by: Wayne Porter <wporter82@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/rts5208/rtsx_sys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rts5208/rtsx_sys.h b/drivers/staging/rts5208/rtsx_sys.h index f49bed9ec76a..817700c0d794 100644 --- a/drivers/staging/rts5208/rtsx_sys.h +++ b/drivers/staging/rts5208/rtsx_sys.h @@ -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) |