summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/cpu/os_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/cpu/os_log.c')
-rw-r--r--arch/blackfin/cpu/os_log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/blackfin/cpu/os_log.c b/arch/blackfin/cpu/os_log.c
index e1c8e2948d..2092d9e3b6 100644
--- a/arch/blackfin/cpu/os_log.c
+++ b/arch/blackfin/cpu/os_log.c
@@ -12,12 +12,12 @@
#define OS_LOG_MAGIC_ADDR ((unsigned long *)0x4f0)
#define OS_LOG_PTR_ADDR ((char **)0x4f4)
-bool bfin_os_log_check(void)
+int bfin_os_log_check(void)
{
if (*OS_LOG_MAGIC_ADDR != OS_LOG_MAGIC)
- return false;
+ return 0;
*OS_LOG_MAGIC_ADDR = 0;
- return true;
+ return 1;
}
void bfin_os_log_dump(void)
OpenPOWER on IntegriCloud