Revert "CMOS: Add set_option and rework get_option."
[coreboot.git] / src / include / pc80 / mc146818rtc.h
index 9edb550da5c711c6481018bb545a84916b3e97f9..e7e13c85b7940bafb1aa5cacebe1e6b3466c9cbf 100644 (file)
 
 #if !defined(ASSEMBLY)
 void rtc_init(int invalid);
-
-int get_option(char *name, unsigned int *value);
-int set_option(char *name, unsigned int value);
+#if USE_OPTION_TABLE == 1
+int get_option(void *dest, char *name);
+#else
+static inline int get_option(void *dest, char *name) { return -2; }
+#endif
 #endif
 
 #endif /*  PC80_MC146818RTC_H */