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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-0e841b04c829f59a5d5745f98d2857f48882efe9@git.kernel.org>
Date:	Fri, 9 Oct 2015 13:55:34 -0700
From:	tip-bot for Chen-Yu Tsai <tipbot@...or.com>
To:	linux-tip-commits@...r.kernel.org
Cc:	mingo@...nel.org, maxime.ripard@...e-electrons.com,
	tglx@...utronix.de, jason@...edaemon.net,
	linux-kernel@...r.kernel.org, wens@...e.org, marc.zyngier@....com,
	hpa@...or.com
Subject: [tip:irq/core] irqchip/sunxi-nmi: Switch to of_io_request_and_map
 () from of_iomap()

Commit-ID:  0e841b04c829f59a5d5745f98d2857f48882efe9
Gitweb:     http://git.kernel.org/tip/0e841b04c829f59a5d5745f98d2857f48882efe9
Author:     Chen-Yu Tsai <wens@...e.org>
AuthorDate: Tue, 6 Oct 2015 00:42:14 +0800
Committer:  Thomas Gleixner <tglx@...utronix.de>
CommitDate: Fri, 9 Oct 2015 22:47:28 +0200

irqchip/sunxi-nmi: Switch to of_io_request_and_map() from of_iomap()

Switch to the new of_io_request_and_map() call, so the IO resource is
properly held, and also shows up in /proc/iomem.

Signed-off-by: Chen-Yu Tsai <wens@...e.org>
Cc: linux-arm-kernel@...ts.infradead.org
Cc: Jason Cooper <jason@...edaemon.net>
Cc: Marc Zyngier <marc.zyngier@....com>
Cc: Maxime Ripard <maxime.ripard@...e-electrons.com>
Link: http://lkml.kernel.org/r/1444063334-19832-3-git-send-email-wens@csie.org
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
---
 drivers/irqchip/irq-sunxi-nmi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-sunxi-nmi.c b/drivers/irqchip/irq-sunxi-nmi.c
index c4f7196..4ef1780 100644
--- a/drivers/irqchip/irq-sunxi-nmi.c
+++ b/drivers/irqchip/irq-sunxi-nmi.c
@@ -153,7 +153,7 @@ static int __init sunxi_sc_nmi_irq_init(struct device_node *node,
 	}
 
 	gc = irq_get_domain_generic_chip(domain, 0);
-	gc->reg_base = of_iomap(node, 0);
+	gc->reg_base = of_io_request_and_map(node, 0, of_node_full_name(node));
 	if (!gc->reg_base) {
 		pr_err("unable to map resource\n");
 		ret = -ENOMEM;
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ