[PATCH] Staging: quickstart style fixes

From: Gary Coulbourne
Date: Sun Nov 21 2010 - 14:46:36 EST


Fixed some style issues reported by checkpatch.pl

Signed-off-by: Gary Coulbourne <bear@xxxxxxxxx>
---
drivers/staging/quickstart/quickstart.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/quickstart/quickstart.c b/drivers/staging/quickstart/quickstart.c
index d83bec8..e6b53b8 100644
--- a/drivers/staging/quickstart/quickstart.c
+++ b/drivers/staging/quickstart/quickstart.c
@@ -5,7 +5,7 @@
* Copyright (C) 2007-2010 Angelo Arrifano <miknix@xxxxxxxxx>
*
* Information gathered from disassebled dsdt and from here:
- * <http://www.microsoft.com/whdc/system/platform/firmware/DirAppLaunch.mspx>
+ * <http://www.microsoft.com/whdc/system/platform/firmware/DirAppLaunch.mspx>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -140,8 +140,12 @@ static ssize_t pressed_button_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%s\n",
- (quickstart_data.pressed?quickstart_data.pressed->name:"none"));
+ char *button_name = "none";
+
+ if (quickstart_data.pressed)
+ button_name = quickstart_data.pressed->name;
+
+ return snprintf(buf, PAGE_SIZE, "%s\n", button_name);
}


--
1.7.1

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