Commit 6eaf842a authored by SeongJae Park's avatar SeongJae Park Committed by Greg Kroah-Hartman

staging: alarm-dev: Remove unnecessary parenthesis

Signed-off-by: default avatarSeongJae Park <sj38.park@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e8e8f87e
...@@ -68,8 +68,8 @@ static struct devalarm alarms[ANDROID_ALARM_TYPE_COUNT]; ...@@ -68,8 +68,8 @@ static struct devalarm alarms[ANDROID_ALARM_TYPE_COUNT];
*/ */
static int is_wakeup(enum android_alarm_type type) static int is_wakeup(enum android_alarm_type type)
{ {
return (type == ANDROID_ALARM_RTC_WAKEUP || return type == ANDROID_ALARM_RTC_WAKEUP ||
type == ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP); type == ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment