diff options
| author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-29 03:59:20 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:03 -0400 |
| commit | 6e574195b75543bc6a6240306313988b1952470c (patch) | |
| tree | 510fb98e64cee409cf1f443391cadb5dc1e53aa3 /drivers/misc/ibmasm/command.c | |
| parent | eecd58536a97502153d4a2bd6f05038f657a1ab3 (diff) | |
drivers/misc: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/ibmasm/command.c')
| -rw-r--r-- | drivers/misc/ibmasm/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/ibmasm/command.c b/drivers/misc/ibmasm/command.c index 1a0e7978226a..276d3fb68094 100644 --- a/drivers/misc/ibmasm/command.c +++ b/drivers/misc/ibmasm/command.c | |||
| @@ -96,7 +96,7 @@ static inline void do_exec_command(struct service_processor *sp) | |||
| 96 | { | 96 | { |
| 97 | char tsbuf[32]; | 97 | char tsbuf[32]; |
| 98 | 98 | ||
| 99 | dbg("%s:%d at %s\n", __FUNCTION__, __LINE__, get_timestamp(tsbuf)); | 99 | dbg("%s:%d at %s\n", __func__, __LINE__, get_timestamp(tsbuf)); |
| 100 | 100 | ||
| 101 | if (ibmasm_send_i2o_message(sp)) { | 101 | if (ibmasm_send_i2o_message(sp)) { |
| 102 | sp->current_command->status = IBMASM_CMD_FAILED; | 102 | sp->current_command->status = IBMASM_CMD_FAILED; |
| @@ -119,7 +119,7 @@ void ibmasm_exec_command(struct service_processor *sp, struct command *cmd) | |||
| 119 | unsigned long flags; | 119 | unsigned long flags; |
| 120 | char tsbuf[32]; | 120 | char tsbuf[32]; |
| 121 | 121 | ||
| 122 | dbg("%s:%d at %s\n", __FUNCTION__, __LINE__, get_timestamp(tsbuf)); | 122 | dbg("%s:%d at %s\n", __func__, __LINE__, get_timestamp(tsbuf)); |
| 123 | 123 | ||
| 124 | spin_lock_irqsave(&sp->lock, flags); | 124 | spin_lock_irqsave(&sp->lock, flags); |
| 125 | 125 | ||
| @@ -139,7 +139,7 @@ static void exec_next_command(struct service_processor *sp) | |||
| 139 | unsigned long flags; | 139 | unsigned long flags; |
| 140 | char tsbuf[32]; | 140 | char tsbuf[32]; |
| 141 | 141 | ||
| 142 | dbg("%s:%d at %s\n", __FUNCTION__, __LINE__, get_timestamp(tsbuf)); | 142 | dbg("%s:%d at %s\n", __func__, __LINE__, get_timestamp(tsbuf)); |
| 143 | 143 | ||
| 144 | spin_lock_irqsave(&sp->lock, flags); | 144 | spin_lock_irqsave(&sp->lock, flags); |
| 145 | sp->current_command = dequeue_command(sp); | 145 | sp->current_command = dequeue_command(sp); |
