-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 54766 b: refs/heads/master c: 5726fb2 h: refs/heads/master v: v3
- Loading branch information
David Brownell
authored and
Linus Torvalds
committed
May 8, 2007
1 parent
e711fe7
commit e539b50
Showing
7 changed files
with
47 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 1c710c896eb461895d3c399e15bb5f20b39c9073 | ||
refs/heads/master: 5726fb2012f0d96153113ddb7f988a0daea587ce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifdef CONFIG_RTC_INTF_DEV | ||
|
||
extern void __init rtc_dev_init(void); | ||
extern void __exit rtc_dev_exit(void); | ||
extern void rtc_dev_add_device(struct rtc_device *rtc); | ||
extern void rtc_dev_del_device(struct rtc_device *rtc); | ||
|
||
#else | ||
|
||
#define rtc_dev_init() do{}while(0) | ||
#define rtc_dev_exit() do{}while(0) | ||
#define rtc_dev_add_device(r) do{}while(0) | ||
#define rtc_dev_del_device(r) do{}while(0) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters