nvram.h 456 B

12345678910111213
  1. #ifndef _LINUX_NVRAM_H
  2. #define _LINUX_NVRAM_H
  3. #include <uapi/linux/nvram.h>
  4. /* __foo is foo without grabbing the rtc_lock - get it yourself */
  5. extern unsigned char __nvram_read_byte(int i);
  6. extern unsigned char nvram_read_byte(int i);
  7. extern void __nvram_write_byte(unsigned char c, int i);
  8. extern void nvram_write_byte(unsigned char c, int i);
  9. extern int __nvram_check_checksum(void);
  10. extern int nvram_check_checksum(void);
  11. #endif /* _LINUX_NVRAM_H */