dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] Correct rtc_wkalrm comments

This corrects the comments describing the 'enabled' and 'pending' flags in
struct rtc_wkalrm of include/linux/rtc.h.

Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Andrew Victor 2006-06-30 01:56:01 -07:00 committed by Linus Torvalds
parent e7b384043e
commit 304228e29a
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ struct rtc_time {
* alarm API.
*/
struct rtc_wkalrm {
unsigned char enabled; /* 0 = alarm disable, 1 = alarm disabled */
unsigned char pending; /* 0 = alarm pending, 1 = alarm not pending */
unsigned char enabled; /* 0 = alarm disabled, 1 = alarm enabled */
unsigned char pending; /* 0 = alarm not pending, 1 = alarm pending */
struct rtc_time time; /* time the alarm is set to */
};