From: Tony Lindgren Date: Fri, 7 Sep 2012 19:53:15 +0000 (-0700) Subject: W1: OMAP HDQ1W: Remove dependencies to mach/hardware.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=aefaf7be498b9cfbd16e42932cdc52ab334241e0;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git W1: OMAP HDQ1W: Remove dependencies to mach/hardware.h No need for hardcoded IRQ here. We can't include mach headers for ARM common zImage support. Cc: Evgeniy Polyakov Signed-off-by: Tony Lindgren --- diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c index 4b0fcf3c2d03..fee195a76941 100644 --- a/drivers/w1/masters/omap_hdq.c +++ b/drivers/w1/masters/omap_hdq.c @@ -19,7 +19,6 @@ #include #include -#include #include "../w1.h" #include "../w1_int.h" @@ -644,7 +643,7 @@ static int omap_hdq_remove(struct platform_device *pdev) /* remove module dependency */ pm_runtime_disable(&pdev->dev); - free_irq(INT_24XX_HDQ_IRQ, hdq_data); + free_irq(platform_get_irq(pdev, 0), hdq_data); platform_set_drvdata(pdev, NULL); iounmap(hdq_data->hdq_base); kfree(hdq_data);