Quoting Herbert Xu <herb...@gondor.apana.org.au>:

On Fri, Oct 02, 2020 at 10:42:23PM +1000, Herbert Xu wrote:

I don't think that's a valid optimisation unless it's backed up
with real numbers.

Also it only matters on little-endian as they're no-ops on big-endian.
If I'm right then this driver never even worked on little-endian.


The following changes fix the sparse warnings with less churn:

---
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c
index 7c547352a862..992d58a4dbf1 100644
--- a/drivers/crypto/talitos.c
+++ b/drivers/crypto/talitos.c
@@ -460,7 +460,7 @@ DEF_TALITOS2_DONE(ch1_3, TALITOS2_ISR_CH_1_3_DONE)
 /*
  * locate current (offending) descriptor
  */
-static u32 current_desc_hdr(struct device *dev, int ch)
+static __be32 current_desc_hdr(struct device *dev, int ch)
 {
        struct talitos_private *priv = dev_get_drvdata(dev);
        int tail, iter;
@@ -478,7 +478,7 @@ static u32 current_desc_hdr(struct device *dev, int ch)

        iter = tail;
        while (priv->chan[ch].fifo[iter].dma_desc != cur_desc &&
-              priv->chan[ch].fifo[iter].desc->next_desc != cur_desc) {
+              priv->chan[ch].fifo[iter].desc->next_desc != 
cpu_to_be32(cur_desc)) {
                iter = (iter + 1) & (priv->fifo_len - 1);
                if (iter == tail) {
                        dev_err(dev, "couldn't locate current descriptor\n");
@@ -486,7 +486,7 @@ static u32 current_desc_hdr(struct device *dev, int ch)
                }
        }

-       if (priv->chan[ch].fifo[iter].desc->next_desc == cur_desc) {
+       if (priv->chan[ch].fifo[iter].desc->next_desc == cpu_to_be32(cur_desc)) 
{
                struct talitos_edesc *edesc;

                edesc = container_of(priv->chan[ch].fifo[iter].desc,
@@ -501,13 +501,13 @@ static u32 current_desc_hdr(struct device *dev, int ch)
 /*
* user diagnostics; report root cause of error based on execution unit status
  */
-static void report_eu_error(struct device *dev, int ch, u32 desc_hdr)
+static void report_eu_error(struct device *dev, int ch, __be32 desc_hdr)
 {
        struct talitos_private *priv = dev_get_drvdata(dev);
        int i;

        if (!desc_hdr)
-               desc_hdr = in_be32(priv->chan[ch].reg + TALITOS_DESCBUF);
+               desc_hdr = cpu_to_be32(in_be32(priv->chan[ch].reg + 
TALITOS_DESCBUF));

        switch (desc_hdr & DESC_HDR_SEL0_MASK) {
        case DESC_HDR_SEL0_AFEU:
---
Christophe

Reply via email to