From: Fabio Estevam <fabio.este...@freescale.com>

commit 136b5721d (workqueue: deprecate __cancel_delayed_work()) made 
__cancel_delayed_work deprecated. Use cancel_delayed_work instead and get rid of
the following warning: 

drivers/media/platform/coda.c:1543: warning: '__cancel_delayed_work' is 
deprecated (declared at include/linux/workqueue.h:437)

Signed-off-by: Fabio Estevam <fabio.este...@freescale.com>
---
 drivers/media/platform/coda.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/platform/coda.c b/drivers/media/platform/coda.c
index cd04ae2..7640505 100644
--- a/drivers/media/platform/coda.c
+++ b/drivers/media/platform/coda.c
@@ -1540,7 +1540,7 @@ static irqreturn_t coda_irq_handler(int irq, void *data)
        u32 wr_ptr, start_ptr;
        struct coda_ctx *ctx;
 
-       __cancel_delayed_work(&dev->timeout);
+       cancel_delayed_work(&dev->timeout);
 
        /* read status register to attend the IRQ */
        coda_read(dev, CODA_REG_BIT_INT_STATUS);
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to