* longer to time out, but that's much better than having a too-short
         * timeout value.
         */
-       if ((host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL))
+       if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
                return 0xE;
 
        /* timeout in us */
         * At least the Marvell CaFe chip gets confused if we set the voltage
         * and set turn on power at the same time, so set the voltage first.
         */
-       if ((host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER))
+       if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
                sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
 
        pwr |= SDHCI_POWER_ON;
         * Some controllers need an extra 10ms delay of 10ms before they
         * can apply clock after applying power
         */
-       if ((host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER))
+       if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
                mdelay(10);
 }