2020-10-23 08:52:22 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Eugeniu Rosca <rosca.eugeniu@gmail.com>
|
|
|
|
*
|
|
|
|
* Android Bootloader Control Block Header
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BCB_H__
|
|
|
|
#define __BCB_H__
|
|
|
|
|
|
|
|
#if CONFIG_IS_ENABLED(CMD_BCB)
|
2020-10-23 08:52:23 +00:00
|
|
|
int bcb_write_reboot_reason(int devnum, char *partp, const char *reasonp);
|
2020-10-23 08:52:22 +00:00
|
|
|
#else
|
|
|
|
#include <linux/errno.h>
|
2020-10-23 08:52:23 +00:00
|
|
|
static inline int bcb_write_reboot_reason(int devnum, char *partp, const char *reasonp)
|
2020-10-23 08:52:22 +00:00
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __BCB_H__ */
|