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-pcf8563.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-pcf8563.c')
-rw-r--r-- | drivers/rtc/rtc-pcf8563.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c index a1e2f39521f8..a41681d26eba 100644 --- a/drivers/rtc/rtc-pcf8563.c +++ b/drivers/rtc/rtc-pcf8563.c | |||
@@ -80,7 +80,7 @@ static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm) | |||
80 | 80 | ||
81 | /* read registers */ | 81 | /* read registers */ |
82 | if ((i2c_transfer(client->adapter, msgs, 2)) != 2) { | 82 | if ((i2c_transfer(client->adapter, msgs, 2)) != 2) { |
83 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | 83 | dev_err(&client->dev, "%s: read error\n", __func__); |
84 | return -EIO; | 84 | return -EIO; |
85 | } | 85 | } |
86 | 86 | ||
@@ -91,7 +91,7 @@ static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm) | |||
91 | dev_dbg(&client->dev, | 91 | dev_dbg(&client->dev, |
92 | "%s: raw data is st1=%02x, st2=%02x, sec=%02x, min=%02x, hr=%02x, " | 92 | "%s: raw data is st1=%02x, st2=%02x, sec=%02x, min=%02x, hr=%02x, " |
93 | "mday=%02x, wday=%02x, mon=%02x, year=%02x\n", | 93 | "mday=%02x, wday=%02x, mon=%02x, year=%02x\n", |
94 | __FUNCTION__, | 94 | __func__, |
95 | buf[0], buf[1], buf[2], buf[3], | 95 | buf[0], buf[1], buf[2], buf[3], |
96 | buf[4], buf[5], buf[6], buf[7], | 96 | buf[4], buf[5], buf[6], buf[7], |
97 | buf[8]); | 97 | buf[8]); |
@@ -112,7 +112,7 @@ static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm) | |||
112 | 112 | ||
113 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " | 113 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " |
114 | "mday=%d, mon=%d, year=%d, wday=%d\n", | 114 | "mday=%d, mon=%d, year=%d, wday=%d\n", |
115 | __FUNCTION__, | 115 | __func__, |
116 | tm->tm_sec, tm->tm_min, tm->tm_hour, | 116 | tm->tm_sec, tm->tm_min, tm->tm_hour, |
117 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | 117 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); |
118 | 118 | ||
@@ -133,7 +133,7 @@ static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm) | |||
133 | 133 | ||
134 | dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, " | 134 | dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, " |
135 | "mday=%d, mon=%d, year=%d, wday=%d\n", | 135 | "mday=%d, mon=%d, year=%d, wday=%d\n", |
136 | __FUNCTION__, | 136 | __func__, |
137 | tm->tm_sec, tm->tm_min, tm->tm_hour, | 137 | tm->tm_sec, tm->tm_min, tm->tm_hour, |
138 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | 138 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); |
139 | 139 | ||
@@ -163,7 +163,7 @@ static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm) | |||
163 | if (err != sizeof(data)) { | 163 | if (err != sizeof(data)) { |
164 | dev_err(&client->dev, | 164 | dev_err(&client->dev, |
165 | "%s: err=%d addr=%02x, data=%02x\n", | 165 | "%s: err=%d addr=%02x, data=%02x\n", |
166 | __FUNCTION__, err, data[0], data[1]); | 166 | __func__, err, data[0], data[1]); |
167 | return -EIO; | 167 | return -EIO; |
168 | } | 168 | } |
169 | }; | 169 | }; |
@@ -208,7 +208,7 @@ static int pcf8563_validate_client(struct i2c_client *client) | |||
208 | if (xfer != ARRAY_SIZE(msgs)) { | 208 | if (xfer != ARRAY_SIZE(msgs)) { |
209 | dev_err(&client->dev, | 209 | dev_err(&client->dev, |
210 | "%s: could not read register 0x%02X\n", | 210 | "%s: could not read register 0x%02X\n", |
211 | __FUNCTION__, pattern[i].reg); | 211 | __func__, pattern[i].reg); |
212 | 212 | ||
213 | return -EIO; | 213 | return -EIO; |
214 | } | 214 | } |
@@ -220,7 +220,7 @@ static int pcf8563_validate_client(struct i2c_client *client) | |||
220 | dev_dbg(&client->dev, | 220 | dev_dbg(&client->dev, |
221 | "%s: pattern=%d, reg=%x, mask=0x%02x, min=%d, " | 221 | "%s: pattern=%d, reg=%x, mask=0x%02x, min=%d, " |
222 | "max=%d, value=%d, raw=0x%02X\n", | 222 | "max=%d, value=%d, raw=0x%02X\n", |
223 | __FUNCTION__, i, pattern[i].reg, pattern[i].mask, | 223 | __func__, i, pattern[i].reg, pattern[i].mask, |
224 | pattern[i].min, pattern[i].max, | 224 | pattern[i].min, pattern[i].max, |
225 | value, buf); | 225 | value, buf); |
226 | 226 | ||