hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*++
Copyright (c) 1996  - 2014, Intel Corporation.
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
 
 
 
Module Name:
 
 
 
Abstract:
 
 
 
--*/
 
#ifndef _RSCI_H
#define _RSCI_H
 
typedef enum {
  NOT_APPLICABLE_RESET = 0,
  WARM_RESET = 1,
  COLD_RESET = 2,
  GLOBAL_RESET = 7,
}ANDROID_RESET_TYPE;
 
#endif