mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
607ca46e97
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
13 lines
456 B
C
13 lines
456 B
C
#ifndef _LINUX_NVRAM_H
|
|
#define _LINUX_NVRAM_H
|
|
|
|
#include <uapi/linux/nvram.h>
|
|
|
|
/* __foo is foo without grabbing the rtc_lock - get it yourself */
|
|
extern unsigned char __nvram_read_byte(int i);
|
|
extern unsigned char nvram_read_byte(int i);
|
|
extern void __nvram_write_byte(unsigned char c, int i);
|
|
extern void nvram_write_byte(unsigned char c, int i);
|
|
extern int __nvram_check_checksum(void);
|
|
extern int nvram_check_checksum(void);
|
|
#endif /* _LINUX_NVRAM_H */
|