1 /* SPDX-License-Identifier: GPL-2.0-only */
8 void sanitize_cmos(void);
10 #if CONFIG(OPTION_BACKEND_NONE)
12 static inline unsigned int get_uint_option(const char *name
, const unsigned int fallback
)
17 static inline enum cb_err
set_uint_option(const char *name
, unsigned int value
)
19 return CB_CMOS_OTABLE_DISABLED
;
22 #else /* !OPTION_BACKEND_NONE */
24 unsigned int get_uint_option(const char *name
, const unsigned int fallback
);
25 enum cb_err
set_uint_option(const char *name
, unsigned int value
);
27 #endif /* OPTION_BACKEND_NONE? */
29 #endif /* _OPTION_H_ */