linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] micro optimise pSeries_probe
@ 2006-12-08  7:08 Anton Blanchard
  2006-12-08  7:22 ` [PATCH] dont allow pSeries_probe to succeed without initialising MMU Anton Blanchard
  0 siblings, 1 reply; 3+ messages in thread
From: Anton Blanchard @ 2006-12-08  7:08 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: paulus


We find the OF root the line before, we may as well use it.

Signed-off-by: Anton Blanchard <anton@samba.org>
---

Index: kernel/arch/powerpc/platforms/pseries/setup.c
===================================================================
--- kernel.orig/arch/powerpc/platforms/pseries/setup.c	2006-10-24 10:23:28.234782030 -0500
+++ kernel/arch/powerpc/platforms/pseries/setup.c	2006-10-24 10:26:19.068732015 -0500
@@ -503,8 +503,8 @@ static int __init pSeries_probe_hypertas
 static int __init pSeries_probe(void)
 {
 	unsigned long root = of_get_flat_dt_root();
- 	char *dtype = of_get_flat_dt_prop(of_get_flat_dt_root(),
- 					  "device_type", NULL);
+ 	char *dtype = of_get_flat_dt_prop(root, "device_type", NULL);
+
  	if (dtype == NULL)
  		return 0;
  	if (strcmp(dtype, "chrp"))

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

end of thread, other threads:[~2006-12-09  5:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-08  7:08 [PATCH] micro optimise pSeries_probe Anton Blanchard
2006-12-08  7:22 ` [PATCH] dont allow pSeries_probe to succeed without initialising MMU Anton Blanchard
2006-12-09  5:47   ` Stephen Rothwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).