summaryrefslogtreecommitdiff
path: root/arch/arm/mach-ux500/reboot_reasons.c
blob: b625c6a615f6b73d7681b159e6910ec8574cafb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (C) ST-Ericsson SA 2011
 * Author: Rickard Evertsson <rickard.evertsson@stericsson.com>
 * for ST-Ericsson.
 *
 * License terms: GNU General Public License (GPL) version 2
 *
 * Use this file to customize your reboot / sw reset reasons. Add, remove or
 * modify reasons in reboot_reasons[].
 */

#include <linux/kernel.h>
#include <mach/reboot_reasons.h>

struct reboot_reason reboot_reasons[] = {
	{"crash", SW_RESET_CRASH},
	{"", SW_RESET_NORMAL}, /* Normal Boot */
};

unsigned int reboot_reasons_size = ARRAY_SIZE(reboot_reasons);