mirror of https://gitee.com/openkylin/linux.git
staging: mt7621-mmc: Remove unused field cmd_edge from msdc_hw
The field cmd_edge of msdc_hw is set to a constant and only used once, replace that position with the constant and remove the unused field. Signed-off-by: Christian Lütke-Stetzkamp <christian@lkamp.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ace488268a
commit
b001fa3cdf
|
@ -54,7 +54,6 @@
|
|||
|
||||
struct msdc_hw {
|
||||
unsigned char clk_src; /* host clock source */
|
||||
unsigned char cmd_edge; /* command latch edge */
|
||||
unsigned char data_edge; /* data latch edge */
|
||||
unsigned char clk_drv; /* clock pad driving */
|
||||
unsigned char cmd_drv; /* command pad driving */
|
||||
|
|
|
@ -177,7 +177,6 @@ void msdc_clk_status(int *status)
|
|||
/* +++ by chhung */
|
||||
struct msdc_hw msdc0_hw = {
|
||||
.clk_src = 0,
|
||||
.cmd_edge = MSDC_SMPL_FALLING,
|
||||
.data_edge = MSDC_SMPL_FALLING,
|
||||
.clk_drv = 4,
|
||||
.cmd_drv = 4,
|
||||
|
@ -2075,7 +2074,8 @@ static void msdc_ops_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
|||
if (ios->clock > 25000000) {
|
||||
//if (!(host->hw->flags & MSDC_REMOVABLE)) {
|
||||
INIT_MSG("SD data latch edge<%d>", hw->data_edge);
|
||||
sdr_set_field(MSDC_IOCON, MSDC_IOCON_RSPL, hw->cmd_edge);
|
||||
sdr_set_field(MSDC_IOCON, MSDC_IOCON_RSPL,
|
||||
MSDC_SMPL_FALLING);
|
||||
sdr_set_field(MSDC_IOCON, MSDC_IOCON_DSPL, hw->data_edge);
|
||||
//} /* for tuning debug */
|
||||
} else { /* default value */
|
||||
|
|
Loading…
Reference in New Issue