staging/rts_pstor: remove braces {} in sd.c (sd_set_clock_divider)

fixed below checkpatch warnings.
-WARNING: braces {} are not necessary for any arm of this statement

Signed-off-by: Toshiaki Yamane <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Toshiaki Yamane 2012-09-07 13:24:26 +09:00 committed by Greg Kroah-Hartman
parent 7ae856ebbc
commit 2d57f965c5

View file

@ -668,13 +668,12 @@ static int sd_set_clock_divider(struct rtsx_chip *chip, u8 clk_div)
val = clk_div; val = clk_div;
} else { } else {
mask = 0x60; mask = 0x60;
if (clk_div == SD_CLK_DIVIDE_0) { if (clk_div == SD_CLK_DIVIDE_0)
val = 0x00; val = 0x00;
} else if (clk_div == SD_CLK_DIVIDE_128) { else if (clk_div == SD_CLK_DIVIDE_128)
val = 0x40; val = 0x40;
} else if (clk_div == SD_CLK_DIVIDE_256) { else if (clk_div == SD_CLK_DIVIDE_256)
val = 0x20; val = 0x20;
}
} }
RTSX_WRITE_REG(chip, REG_SD_CFG1, mask, val); RTSX_WRITE_REG(chip, REG_SD_CFG1, mask, val);