mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
staging: rts5208: Put constant on right side of comparison
Replaces position of constant from left to right side of a comparison. Additionally, modifies logical continuations to be on the previous line and fixes alignment to match open parenthesis. Issues found by checkpatch. Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bd778ef093
commit
0328217969
1 changed files with 3 additions and 3 deletions
|
@ -1436,9 +1436,9 @@ static int sd_switch_function(struct rtsx_chip *chip, u8 bus_width)
|
|||
func_to_switch);
|
||||
|
||||
#ifdef SUPPORT_SD_LOCK
|
||||
if ((sd_card->sd_lock_status & SD_SDR_RST)
|
||||
&& (DDR50_SUPPORT == func_to_switch)
|
||||
&& (sd_card->func_group1_mask & SDR50_SUPPORT_MASK)) {
|
||||
if ((sd_card->sd_lock_status & SD_SDR_RST) &&
|
||||
(func_to_switch == DDR50_SUPPORT) &&
|
||||
(sd_card->func_group1_mask & SDR50_SUPPORT_MASK)) {
|
||||
func_to_switch = SDR50_SUPPORT;
|
||||
dev_dbg(rtsx_dev(chip), "Using SDR50 instead of DDR50 for SD Lock\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue