public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86: OLPC: some olpc-detection cleanups
@ 2010-09-24  0:31 Andres Salomon
  0 siblings, 0 replies; only message in thread
From: Andres Salomon @ 2010-09-24  0:31 UTC (permalink / raw)
  To: hpa; +Cc: linux-kernel, dsd, tglx, mingo, x86

Following up on dsd's cleanups (3e3c4860), address some minor nits:

 - rename check_ofw_arch to olpc_check_arch (as we're checking for OLPC)
 - add a comment describing why we're checking..
 - use sizeof(array) rather than hardcoding the size
 - sprinkle some parens around

Signed-off-by: Andres Salomon <dilinger@queued.net>
---
 arch/x86/kernel/olpc.c |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/olpc.c b/arch/x86/kernel/olpc.c
index 37c4993..361c2e0 100644
--- a/arch/x86/kernel/olpc.c
+++ b/arch/x86/kernel/olpc.c
@@ -183,18 +183,25 @@ err:
 }
 EXPORT_SYMBOL_GPL(olpc_ec_cmd);
 
-static bool __init check_ofw_architecture(void)
+/*
+ * Simply because OFW has been detected does not mean that the machine is
+ * an OLPC device; this ensures that OFW's "/architecture" property is set
+ * to "OLPC".
+ */
+static bool __init olpc_check_architecture(void)
 {
 	size_t propsize;
 	char olpc_arch[5];
-	const void *args[] = { NULL, "architecture", olpc_arch, (void *)5 };
+	const void *args[] = { NULL, "architecture", olpc_arch,
+			(void *)sizeof(olpc_arch) };
 	void *res[] = { &propsize };
 
 	if (olpc_ofw("getprop", args, res)) {
 		printk(KERN_ERR "ofw: getprop call failed!\n");
 		return false;
 	}
-	return propsize == 5 && strncmp("OLPC", olpc_arch, 5) == 0;
+	return (propsize == sizeof(olpc_arch)) &&
+			(strncmp("OLPC", olpc_arch, sizeof(olpc_arch)) == 0);
 }
 
 static u32 __init get_board_revision(void)
@@ -213,7 +220,7 @@ static u32 __init get_board_revision(void)
 
 static bool __init platform_detect(void)
 {
-	if (!check_ofw_architecture())
+	if (!olpc_check_architecture())
 		return false;
 	olpc_platform_info.flags |= OLPC_F_PRESENT;
 	olpc_platform_info.boardrev = get_board_revision();
-- 
1.5.6.5


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-09-23 23:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-24  0:31 [PATCH] x86: OLPC: some olpc-detection cleanups Andres Salomon

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