Commit a3edb7c1 authored by Christian Lütke-Stetzkamp's avatar Christian Lütke-Stetzkamp Committed by Greg Kroah-Hartman

staging: mt7621-mmc: Remove unused field clk_drv from msdc_hw

The field clk_drv 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: default avatarChristian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a1972612
...@@ -54,7 +54,6 @@ ...@@ -54,7 +54,6 @@
struct msdc_hw { struct msdc_hw {
unsigned char clk_src; /* host clock source */ unsigned char clk_src; /* host clock source */
unsigned char clk_drv; /* clock pad driving */
unsigned long flags; /* hardware capability flags */ unsigned long flags; /* hardware capability flags */
/* config gpio pull mode */ /* config gpio pull mode */
......
...@@ -177,7 +177,6 @@ void msdc_clk_status(int *status) ...@@ -177,7 +177,6 @@ void msdc_clk_status(int *status)
/* +++ by chhung */ /* +++ by chhung */
struct msdc_hw msdc0_hw = { struct msdc_hw msdc0_hw = {
.clk_src = 0, .clk_src = 0,
.clk_drv = 4,
.flags = MSDC_CD_PIN_EN | MSDC_REMOVABLE, .flags = MSDC_CD_PIN_EN | MSDC_REMOVABLE,
// .flags = MSDC_WP_PIN_EN | MSDC_CD_PIN_EN | MSDC_REMOVABLE, // .flags = MSDC_WP_PIN_EN | MSDC_CD_PIN_EN | MSDC_REMOVABLE,
}; };
...@@ -2371,7 +2370,6 @@ static void msdc_enable_cd_irq(struct msdc_host *host, int enable) ...@@ -2371,7 +2370,6 @@ static void msdc_enable_cd_irq(struct msdc_host *host, int enable)
static void msdc_init_hw(struct msdc_host *host) static void msdc_init_hw(struct msdc_host *host)
{ {
void __iomem *base = host->base; void __iomem *base = host->base;
struct msdc_hw *hw = host->hw;
#ifdef MT6575_SD_DEBUG #ifdef MT6575_SD_DEBUG
msdc_reg[host->id] = (struct msdc_regs *)host->base; msdc_reg[host->id] = (struct msdc_regs *)host->base;
...@@ -2441,8 +2439,8 @@ static void msdc_init_hw(struct msdc_host *host) ...@@ -2441,8 +2439,8 @@ static void msdc_init_hw(struct msdc_host *host)
#if 1 #if 1
/* set clk, cmd, dat pad driving */ /* set clk, cmd, dat pad driving */
sdr_set_field(MSDC_PAD_CTL0, MSDC_PAD_CTL0_CLKDRVN, hw->clk_drv); sdr_set_field(MSDC_PAD_CTL0, MSDC_PAD_CTL0_CLKDRVN, 4);
sdr_set_field(MSDC_PAD_CTL0, MSDC_PAD_CTL0_CLKDRVP, hw->clk_drv); sdr_set_field(MSDC_PAD_CTL0, MSDC_PAD_CTL0_CLKDRVP, 4);
sdr_set_field(MSDC_PAD_CTL1, MSDC_PAD_CTL1_CMDDRVN, 4); sdr_set_field(MSDC_PAD_CTL1, MSDC_PAD_CTL1_CMDDRVN, 4);
sdr_set_field(MSDC_PAD_CTL1, MSDC_PAD_CTL1_CMDDRVP, 4); sdr_set_field(MSDC_PAD_CTL1, MSDC_PAD_CTL1_CMDDRVP, 4);
sdr_set_field(MSDC_PAD_CTL2, MSDC_PAD_CTL2_DATDRVN, 4); sdr_set_field(MSDC_PAD_CTL2, MSDC_PAD_CTL2_DATDRVN, 4);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment