]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
.32 patches
authorGreg Kroah-Hartman <gregkh@suse.de>
Tue, 23 Nov 2010 00:07:01 +0000 (16:07 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 23 Nov 2010 00:07:01 +0000 (16:07 -0800)
queue-2.6.32/i2c-pca-platform-change-device-name-of-request_irq.patch [new file with mode: 0644]
queue-2.6.32/series

diff --git a/queue-2.6.32/i2c-pca-platform-change-device-name-of-request_irq.patch b/queue-2.6.32/i2c-pca-platform-change-device-name-of-request_irq.patch
new file mode 100644 (file)
index 0000000..2a1a411
--- /dev/null
@@ -0,0 +1,32 @@
+From 323584436db0cb05286425d4dfd9516fce88487f Mon Sep 17 00:00:00 2001
+From: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
+Date: Sun, 24 Oct 2010 18:16:57 +0200
+Subject: i2c-pca-platform: Change device name of request_irq
+
+From: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
+
+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 |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/i2c/busses/i2c-pca-platform.c
++++ b/drivers/i2c/busses/i2c-pca-platform.c
+@@ -224,7 +224,7 @@ static int __devinit i2c_pca_pf_probe(st
+       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;
+       }
index 33e4ed0ba6bd2f248bd1a4429d53515768a95ab3..a8f331310608459a01d67ff9d6d2fa962e3a0c6a 100644 (file)
@@ -5,3 +5,4 @@ block-check-for-proper-length-of-iov-entries-in-blk_rq_map_user_iov.patch
 jme-fix-phy-power-off-error.patch
 irda-fix-parameter-extraction-stack-overflow.patch
 irda-fix-heap-memory-corruption-in-iriap.c.patch
+i2c-pca-platform-change-device-name-of-request_irq.patch