diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:12:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:17 -0400 |
commit | 2a4e2b8780c6df42b19c053243dada7fa4d311ee (patch) | |
tree | 4970af3a9ee9c2a8b3e4861ac552cb9262acbaa0 /drivers/rtc/rtc-max6902.c | |
parent | dca03a51549bc645685fb8a77efa64df531666c3 (diff) |
rtc: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: David Brownell <david-b@pacbell.net>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-max6902.c')
-rw-r--r-- | drivers/rtc/rtc-max6902.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-max6902.c b/drivers/rtc/rtc-max6902.c index 1f956dc5d56e..12f0310ae89c 100644 --- a/drivers/rtc/rtc-max6902.c +++ b/drivers/rtc/rtc-max6902.c | |||
@@ -140,7 +140,7 @@ static int max6902_get_datetime(struct device *dev, struct rtc_time *dt) | |||
140 | dt->tm_year -= 1900; | 140 | dt->tm_year -= 1900; |
141 | 141 | ||
142 | #ifdef MAX6902_DEBUG | 142 | #ifdef MAX6902_DEBUG |
143 | printk("\n%s : Read RTC values\n",__FUNCTION__); | 143 | printk("\n%s : Read RTC values\n",__func__); |
144 | printk("tm_hour: %i\n",dt->tm_hour); | 144 | printk("tm_hour: %i\n",dt->tm_hour); |
145 | printk("tm_min : %i\n",dt->tm_min); | 145 | printk("tm_min : %i\n",dt->tm_min); |
146 | printk("tm_sec : %i\n",dt->tm_sec); | 146 | printk("tm_sec : %i\n",dt->tm_sec); |
@@ -158,7 +158,7 @@ static int max6902_set_datetime(struct device *dev, struct rtc_time *dt) | |||
158 | dt->tm_year = dt->tm_year+1900; | 158 | dt->tm_year = dt->tm_year+1900; |
159 | 159 | ||
160 | #ifdef MAX6902_DEBUG | 160 | #ifdef MAX6902_DEBUG |
161 | printk("\n%s : Setting RTC values\n",__FUNCTION__); | 161 | printk("\n%s : Setting RTC values\n",__func__); |
162 | printk("tm_sec : %i\n",dt->tm_sec); | 162 | printk("tm_sec : %i\n",dt->tm_sec); |
163 | printk("tm_min : %i\n",dt->tm_min); | 163 | printk("tm_min : %i\n",dt->tm_min); |
164 | printk("tm_hour: %i\n",dt->tm_hour); | 164 | printk("tm_hour: %i\n",dt->tm_hour); |