public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 1/2] qe: modify get_qe_base function
@ 2016-09-23  2:20 Zhao Qiang
  2016-09-23  2:20 ` [PATCH v6 2/2] QE: remove PPCisms for QE Zhao Qiang
  0 siblings, 1 reply; 7+ messages in thread
From: Zhao Qiang @ 2016-09-23  2:20 UTC (permalink / raw)
  To: oss; +Cc: pku.leo, xiaobo.xie, linuxppc-dev, linux-kernel, Zhao Qiang

modify get_qe_base function with of_address_to_resource
instead of of_get_property and of_translate_address.

Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com>
---
Changes for v2:
	- na
Changes for v3:
	- na
Changes for v4:
	- na
Changes for v5:
	- na
Changes for v6:
	- na

 drivers/soc/fsl/qe/qe.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/soc/fsl/qe/qe.c b/drivers/soc/fsl/qe/qe.c
index 7026507..2707a82 100644
--- a/drivers/soc/fsl/qe/qe.c
+++ b/drivers/soc/fsl/qe/qe.c
@@ -69,8 +69,8 @@ static phys_addr_t qebase = -1;
 phys_addr_t get_qe_base(void)
 {
 	struct device_node *qe;
-	int size;
-	const u32 *prop;
+	int ret;
+	struct resource res;
 
 	if (qebase != -1)
 		return qebase;
@@ -82,9 +82,9 @@ phys_addr_t get_qe_base(void)
 			return qebase;
 	}
 
-	prop = of_get_property(qe, "reg", &size);
-	if (prop && size >= sizeof(*prop))
-		qebase = of_translate_address(qe, prop);
+	ret = of_address_to_resource(qe, 0, &res);
+	if (!ret)
+		qebase = res.start;
 	of_node_put(qe);
 
 	return qebase;
-- 
2.1.0.27.g96db324

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-09-27  5:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-23  2:20 [PATCH v6 1/2] qe: modify get_qe_base function Zhao Qiang
2016-09-23  2:20 ` [PATCH v6 2/2] QE: remove PPCisms for QE Zhao Qiang
2016-09-25  4:14   ` [v6,2/2] " Scott Wood
2016-09-25  4:19     ` Scott Wood
2016-09-26  1:46       ` Qiang Zhao
2016-09-26 23:11         ` Scott Wood
2016-09-27  3:13           ` Qiang Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox