diff mbox series

[U-Boot,02/15] mmc: uniphier: Drop useless check

Message ID 20180409153105.13597-2-marek.vasut+renesas@gmail.com
State Accepted
Commit 620fd85c0b650b4061ba5c989276d58c27280be2
Delegated to: Jaehoon Chung
Headers show
Series [U-Boot,01/15] mmc: uniphier: Factor out FIFO accessors | expand

Commit Message

Marek Vasut April 9, 2018, 3:30 p.m. UTC
Drop useless check in matsu_sd_{read,write}q(), this is only ever
called to read the data from FIFO and only when 64bit variant of
the block is used anyway.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
---
 drivers/mmc/matsushita-common.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)
diff mbox series

Patch

diff --git a/drivers/mmc/matsushita-common.c b/drivers/mmc/matsushita-common.c
index 4553b168f5..ec5469850b 100644
--- a/drivers/mmc/matsushita-common.c
+++ b/drivers/mmc/matsushita-common.c
@@ -23,19 +23,13 @@  DECLARE_GLOBAL_DATA_PTR;
 
 static u64 matsu_sd_readq(struct matsu_sd_priv *priv, unsigned int reg)
 {
-	if (priv->caps & MATSU_SD_CAP_64BIT)
-		return readq(priv->regbase + (reg << 1));
-	else
-		return readq(priv->regbase + reg);
+	return readq(priv->regbase + (reg << 1));
 }
 
 static void matsu_sd_writeq(struct matsu_sd_priv *priv,
 			       u64 val, unsigned int reg)
 {
-	if (priv->caps & MATSU_SD_CAP_64BIT)
-		writeq(val, priv->regbase + (reg << 1));
-	else
-		writeq(val, priv->regbase + reg);
+	writeq(val, priv->regbase + (reg << 1));
 }
 
 static u32 matsu_sd_readl(struct matsu_sd_priv *priv, unsigned int reg)