lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 26 Jan 2011 14:48:02 +0800
From:	"Du, Alek" <alek.du@...el.com>
To:	David Miller <davem@...emloft.net>,
	"buytenh@...retlab.ca" <buytenh@...retlab.ca>
CC:	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH] langwell_gpio: Fix deprecated refs to irq_desc->chip
 and chip->eoi

Another patch from Feng Tang already covers this and picked up by Andrew Morton.

[patch 04/23] langwell_gpio: modify EOI handling following change of kernel irq subsystem


Thanks,
Alek
-----Original Message-----
From: David Miller [mailto:davem@...emloft.net] 
Sent: Wednesday, January 26, 2011 2:30 PM
To: buytenh@...retlab.ca
Cc: Du, Alek; linux-kernel@...r.kernel.org
Subject: [PATCH] langwell_gpio: Fix deprecated refs to irq_desc->chip and chip->eoi


Signed-off-by: David S. Miller <davem@...emloft.net>
---
 drivers/gpio/langwell_gpio.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpio/langwell_gpio.c b/drivers/gpio/langwell_gpio.c
index d81cc74..a0d0c7b 100644
--- a/drivers/gpio/langwell_gpio.c
+++ b/drivers/gpio/langwell_gpio.c
@@ -206,7 +206,7 @@ static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
 		/* clear the edge detect status bit */
 		writel(gedr_v, gedr);
 	}
-	desc->chip->eoi(irq);
+	desc->irq_data.chip->irq_eoi(&desc->irq_data);
 }
 
 static int __devinit lnw_gpio_probe(struct pci_dev *pdev,
-- 
1.7.3.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists