staging: rts5208: remove unnecessary parentheses in rtsx_card.c
authorBenjamin Philip <benjamin.philip495@gmail.com>
Tue, 21 Sep 2021 07:33:42 +0000 (13:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Sep 2021 15:30:55 +0000 (17:30 +0200)
This commit removes unnecessary parentheses that have been flagged
by checkpatch.pl in rtsx_card.c.

Signed-off-by: Benjamin Philip <benjamin.philip495@gmail.com>
Link: https://lore.kernel.org/r/41db2310fdd942a8d840e21572f1fe21879798e2.1632209460.git.benjamin.philip495@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5208/rtsx_card.c

index 294f381518fabc31f608bf081f07c926b5b0b474..326b04756f62c71916f8bd44a324825b587c72ff 100644 (file)
@@ -165,7 +165,7 @@ void do_reset_sd_card(struct rtsx_chip *chip)
                chip->card_fail &= ~SD_CARD;
                chip->rw_card[chip->card2lun[SD_CARD]] = sd_rw;
        } else {
-               if (chip->sd_io || (chip->sd_reset_counter >= MAX_RESET_CNT)) {
+               if (chip->sd_io || chip->sd_reset_counter >= MAX_RESET_CNT) {
                        clear_bit(SD_NR, &chip->need_reset);
                        chip->sd_reset_counter = 0;
                        chip->sd_show_cnt = 0;
@@ -636,7 +636,7 @@ int switch_ssc_clock(struct rtsx_chip *chip, int clk)
        dev_dbg(rtsx_dev(chip), "Switch SSC clock to %dMHz (cur_clk = %d)\n",
                clk, chip->cur_clk);
 
-       if ((clk <= 2) || (n > max_n))
+       if (clk <= 2 || n > max_n)
                return STATUS_FAIL;
 
        mcu_cnt = (u8)(125 / clk + 3);
@@ -886,7 +886,7 @@ int card_power_on(struct rtsx_chip *chip, u8 card)
        int retval;
        u8 mask, val1, val2;
 
-       if (CHECK_LUN_MODE(chip, SD_MS_2LUN) && (card == MS_CARD)) {
+       if (CHECK_LUN_MODE(chip, SD_MS_2LUN) && card == MS_CARD) {
                mask = MS_POWER_MASK;
                val1 = MS_PARTIAL_POWER_ON;
                val2 = MS_POWER_ON;
@@ -920,7 +920,7 @@ int card_power_off(struct rtsx_chip *chip, u8 card)
        int retval;
        u8 mask, val;
 
-       if (CHECK_LUN_MODE(chip, SD_MS_2LUN) && (card == MS_CARD)) {
+       if (CHECK_LUN_MODE(chip, SD_MS_2LUN) && card == MS_CARD) {
                mask = MS_POWER_MASK;
                val = MS_POWER_OFF;
        } else {