aboutsummaryrefslogtreecommitdiff
path: root/include/linux/rtc/pcf50633.h
diff options
context:
space:
mode:
authorBalaji Rao <balajirrao@openmoko.org>2008-11-20 19:46:51 +0000
committerAndy Green <agreen@pads.home.warmcat.com>2008-11-20 19:46:51 +0000
commitb0c88072f6652fa897d67a4e8c5bea5e09438189 (patch)
treeb3769c2439823322760d56e859fab4090f5adce7 /include/linux/rtc/pcf50633.h
parent76e92a5722a4b89c39208eec56ea6e80222e8208 (diff)
pcf50633_rtc.patch
Move the RTC subdevice driver into drivers/rtc/rtc-pcf50633.c
Diffstat (limited to 'include/linux/rtc/pcf50633.h')
-rw-r--r--include/linux/rtc/pcf50633.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/rtc/pcf50633.h b/include/linux/rtc/pcf50633.h
new file mode 100644
index 00000000000..4fc5898ed5d
--- /dev/null
+++ b/include/linux/rtc/pcf50633.h
@@ -0,0 +1,13 @@
+#ifndef __LINUX_RTC_PCF50633_H
+#define __LINUX_RTC_PCF50633_H
+
+
+enum pcf50633_rtc_event {
+ PCF50633_RTC_EVENT_ALARM,
+ PCF50633_RTC_EVENT_SECOND,
+};
+
+void pcf50633_rtc_handle_event(struct pcf50633_data *pcf,
+ enum pcf50633_rtc_event evt);
+
+#endif