-
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: 296035 b: refs/heads/master c: b2994d3 h: refs/heads/master i: 296033: 7cb866f 296031: f3cbdc0 v: v3
- Loading branch information
Heiko Stuebner
authored and
Kukjin Kim
committed
Feb 6, 2012
1 parent
e22b1f7
commit f012bc8
Showing
4 changed files
with
32 additions
and
1 deletion.
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: 25c1a2466008a75955e80df3cc0698410a0cec72 | ||
refs/heads/master: b2994d318dc78c9a4a43605629f00217335ada28 |
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,27 @@ | ||
/* linux/arch/arm/plat-samsung/include/plat/rtc-core.h | ||
* | ||
* Copyright (c) 2011 Heiko Stuebner <heiko@sntech.de> | ||
* | ||
* Samsung RTC Controller core functions | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef __ASM_PLAT_RTC_CORE_H | ||
#define __ASM_PLAT_RTC_CORE_H __FILE__ | ||
|
||
/* These functions are only for use with the core support code, such as | ||
* the cpu specific initialisation code | ||
*/ | ||
|
||
/* re-define device name depending on support. */ | ||
static inline void s3c_rtc_setname(char *name) | ||
{ | ||
#if defined(CONFIG_SAMSUNG_DEV_RTC) || defined(CONFIG_PLAT_S3C24XX) | ||
s3c_device_rtc.name = name; | ||
#endif | ||
} | ||
|
||
#endif /* __ASM_PLAT_RTC_CORE_H */ |