]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
i2c-pca-platform: Change device name of request_irq
authorNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Sun, 24 Oct 2010 16:16:57 +0000 (18:16 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 9 Dec 2010 21:26:33 +0000 (13:26 -0800)
commit 323584436db0cb05286425d4dfd9516fce88487f upstream.

i2c->adap.name shouldn't be used in request_irq.
Instead the driver name "i2c-pca-platform" should be used.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/i2c/busses/i2c-pca-platform.c

index 1d8c208882598f2f8e086735e04b946077fb7e7a..fd295dd949861ecd6c024e836cc405ba3d7625f7 100644 (file)
@@ -224,7 +224,7 @@ static int __devinit i2c_pca_pf_probe(struct platform_device *pdev)
 
        if (irq) {
                ret = request_irq(irq, i2c_pca_pf_handler,
-                       IRQF_TRIGGER_FALLING, i2c->adap.name, i2c);
+                       IRQF_TRIGGER_FALLING, pdev->name, i2c);
                if (ret)
                        goto e_reqirq;
        }