OSDN Git Service

crypto: inside-secure - fix a typo in a register name
authorAntoine Tenart <antoine.tenart@bootlin.com>
Mon, 19 Mar 2018 08:21:15 +0000 (09:21 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 30 Mar 2018 17:32:44 +0000 (01:32 +0800)
This patch fixes a typo in the EIP197_HIA_xDR_WR_CTRL_BUG register name,
as it should be EIP197_HIA_xDR_WR_CTRL_BUF. This is a cosmetic only
change.

Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/inside-secure/safexcel.c
drivers/crypto/inside-secure/safexcel.h

index cc9d2e9..f7d7293 100644 (file)
@@ -235,7 +235,7 @@ static int safexcel_hw_setup_rdesc_rings(struct safexcel_crypto_priv *priv)
                /* Configure DMA tx control */
                val = EIP197_HIA_xDR_CFG_WR_CACHE(WR_CACHE_3BITS);
                val |= EIP197_HIA_xDR_CFG_RD_CACHE(RD_CACHE_3BITS);
-               val |= EIP197_HIA_xDR_WR_RES_BUF | EIP197_HIA_xDR_WR_CTRL_BUG;
+               val |= EIP197_HIA_xDR_WR_RES_BUF | EIP197_HIA_xDR_WR_CTRL_BUF;
                writel(val,
                       EIP197_HIA_RDR(priv, i) + EIP197_HIA_xDR_DMA_CFG);
 
index 9ca1654..2958139 100644 (file)
 
 /* EIP197_HIA_xDR_DMA_CFG */
 #define EIP197_HIA_xDR_WR_RES_BUF              BIT(22)
-#define EIP197_HIA_xDR_WR_CTRL_BUG             BIT(23)
+#define EIP197_HIA_xDR_WR_CTRL_BUF             BIT(23)
 #define EIP197_HIA_xDR_WR_OWN_BUF              BIT(24)
 #define EIP197_HIA_xDR_CFG_WR_CACHE(n)         (((n) & 0x7) << 25)
 #define EIP197_HIA_xDR_CFG_RD_CACHE(n)         (((n) & 0x7) << 29)