ba32dd1412
Extends the last_resume_reason to log suspend abort reason. The abort reasons will have "Abort:" appended at the start to distinguish itself from the resume reason. Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com> Change-Id: I3207f1844e3d87c706dfc298fb10e1c648814c5f [AmitP: Folded following android-4.9 changes into this patch 00a83e61b4fc ("ANDROID: Make suspend abort reason logging depend on CONFIG_PM_SLEEP") 9d17e24b036e ("ANDROID: wakeup_reason: use vsnprintf instead of snsprintf for vargs.") 7961972600ba ("ANDROID: power: Provide dummy log_suspend_abort_reason() if SUSPEND is disabled")] Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
30 lines
942 B
C
30 lines
942 B
C
/*
|
|
* include/linux/wakeup_reason.h
|
|
*
|
|
* Logs the reason which caused the kernel to resume
|
|
* from the suspend mode.
|
|
*
|
|
* Copyright (C) 2014 Google, Inc.
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _LINUX_WAKEUP_REASON_H
|
|
#define _LINUX_WAKEUP_REASON_H
|
|
|
|
#define MAX_SUSPEND_ABORT_LEN 256
|
|
|
|
void log_wakeup_reason(int irq);
|
|
#ifdef CONFIG_SUSPEND
|
|
void log_suspend_abort_reason(const char *fmt, ...);
|
|
#else
|
|
static inline void log_suspend_abort_reason(const char *fmt, ...) { }
|
|
#endif
|
|
|
|
#endif /* _LINUX_WAKEUP_REASON_H */
|