blob: e1810f3f603b564fc7be1d6434e8f4f7162d9929 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Persistent EC options stored in EEPROM */
#ifndef __CROS_EC_EOPTION_H
#define __CROS_EC_EOPTION_H
#include "common.h"
/* Boolean options */
enum eoption_bool {
EOPTION_BOOL_TEST = 0, /* Test option */
};
/**
* Initialize the module.
*/
void eoption_init(void);
/**
* Return the current value of a boolean option.
*
* @param opt Option to return
* @return 0 if option is false, 1 if true.
*/
int eoption_get_bool(enum eoption_bool opt);
/**
* Set the value of a boolean option
*
* @param opt Option to set
* @param value New value for option
*
* @return EC_SUCCESS, or non-zero if error.
*/
int eoption_set_bool(enum eoption_bool opt, int value);
#endif /* __CROS_EC_EOPTION_H */
|