Manual: Small English improvement
[maemo-rb.git] / firmware / drivers / rtc / rtc_imx233.c
blob43686108751ea16b3f729434a1810f4868420f21
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2011 by Amaury Pouly
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "system.h"
23 #include "rtc.h"
24 #include "timefuncs.h"
26 void rtc_init(void)
30 int rtc_read_datetime(struct tm *tm)
32 (void) tm;
33 return -1;
36 int rtc_write_datetime(const struct tm *tm)
38 (void) tm;
39 return -1;
42 void rtc_set_alarm(int h, int m)
44 (void) h;
45 (void) m;
48 void rtc_get_alarm(int *h, int *m)
50 (void) h;
51 (void) m;
54 void rtc_enable_alarm(bool enable)
56 (void) enable;
59 bool rtc_check_alarm_started(bool release_alarm)
61 (void) release_alarm;
62 return false;
65 bool rtc_check_alarm_flag(void)
67 return false;