powerpc/rmu: Fix the error memory free parameters
authorLiu Gang <Gang.Liu@freescale.com>
Wed, 9 Apr 2014 10:04:45 +0000 (18:04 +0800)
committerScott Wood <scottwood@freescale.com>
Thu, 22 May 2014 23:08:13 +0000 (18:08 -0500)
There are error parameters should be corrected when
calling dma_free_coherent to free rmu rx-ring buffers
in fsl_open_inb_mbox() function.

Signed-off-by: Liu Gang <Gang.Liu@freescale.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
arch/powerpc/sysdev/fsl_rmu.c

index 00e224a..b48197a 100644 (file)
@@ -881,9 +881,9 @@ fsl_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
        rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0,
                         "msg_rx", (void *)mport);
        if (rc < 0) {
-               dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
-                       rmu->msg_tx_ring.virt_buffer[i],
-                       rmu->msg_tx_ring.phys_buffer[i]);
+               dma_free_coherent(priv->dev,
+                       rmu->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
+                       rmu->msg_rx_ring.virt, rmu->msg_rx_ring.phys);
                goto out;
        }