From patchwork Mon Nov 19 08:23:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] rtc: tps65910: renaming irq to match device Date: Sun, 18 Nov 2012 22:23:33 -0000 From: Sivaram Nair X-Patchwork-Id: 199940 Message-Id: <1353313413-17382-1-git-send-email-sivaramn@nvidia.com> To: , Cc: , , Sivaram Nair This is a cosmetic change to rename the irq name to match the device name. Signed-off-by: Sivaram Nair --- drivers/rtc/rtc-tps65910.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-tps65910.c b/drivers/rtc/rtc-tps65910.c index 7a82337..e8d44bc 100644 --- a/drivers/rtc/rtc-tps65910.c +++ b/drivers/rtc/rtc-tps65910.c @@ -261,7 +261,7 @@ static int __devinit tps65910_rtc_probe(struct platform_device *pdev) ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, tps65910_rtc_interrupt, IRQF_TRIGGER_LOW, - "rtc-tps65910", &pdev->dev); + dev_name(&pdev->dev), &pdev->dev); if (ret < 0) { dev_err(&pdev->dev, "IRQ is not free.\n"); return ret;