[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1388246608-11272-1-git-send-email-arthurs578@gmail.com>
Date: Sat, 28 Dec 2013 11:03:28 -0500
From: Arthur Schwalbenberg <arthurs578@...il.com>
To: gregkh@...uxfoundation.org
Cc: john.stultz@...aro.org, dan.carpenter@...cle.com,
arthurs578@...il.com, cruzjbishop@...il.com,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: [PATCH] Staging: Android: Fixed coding issue return parenthesis in alarm_dev.c
This is a patch to the alarm_dev.c file that fixes up a return is not
a function warning found by the checkpatch.pl tool
Signed-off-by: Arthur Schwalbenberg <arthurs578@...il.com>
---
drivers/staging/android/alarm-dev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/android/alarm-dev.c b/drivers/staging/android/alarm-dev.c
index 647694f..96b2f53 100644
--- a/drivers/staging/android/alarm-dev.c
+++ b/drivers/staging/android/alarm-dev.c
@@ -68,8 +68,8 @@ static struct devalarm alarms[ANDROID_ALARM_TYPE_COUNT];
*/
static int is_wakeup(enum android_alarm_type type)
{
- return (type == ANDROID_ALARM_RTC_WAKEUP ||
- type == ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP);
+ return type == ANDROID_ALARM_RTC_WAKEUP ||
+ type == ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP;
}
--
1.8.3.2
--
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