Browse Source

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>
Christian Lütke-Stetzkamp 7 years ago
parent
commit
b001fa3cdf
2 changed files with 2 additions and 3 deletions
  1. 0 1
      drivers/staging/mt7621-mmc/board.h
  2. 2 2
      drivers/staging/mt7621-mmc/sd.c

+ 0 - 1
drivers/staging/mt7621-mmc/board.h

@@ -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 */

+ 2 - 2
drivers/staging/mt7621-mmc/sd.c

@@ -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 */