LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] sparc: replace remaining __FUNCTION__ occurances
@ 2008-03-03 19:27 Harvey Harrison
2008-03-03 19:41 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Harvey Harrison @ 2008-03-03 19:27 UTC (permalink / raw)
To: David Miller; +Cc: Andrew Morton, LKML
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
arch/sparc/kernel/ebus.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/sparc/kernel/ebus.c b/arch/sparc/kernel/ebus.c
index d850785..96344ff 100644
--- a/arch/sparc/kernel/ebus.c
+++ b/arch/sparc/kernel/ebus.c
@@ -101,7 +101,7 @@ void __init fill_ebus_child(struct device_node *dp,
prom_printf("UGH: property for %s was %d, need < %d\n",
dev->prom_node->name, len,
dev->parent->num_addrs);
- panic(__FUNCTION__);
+ panic(__func__);
}
/* XXX resource */
@@ -162,7 +162,7 @@ void __init fill_ebus_device(struct device_node *dp, struct linux_ebus_device *d
prom_printf("UGH: proplen for %s was %d, need multiple of %d\n",
dev->prom_node->name, len,
(int)sizeof(struct linux_prom_registers));
- panic(__FUNCTION__);
+ panic(__func__);
}
dev->num_addrs = len / sizeof(struct linux_prom_registers);
@@ -324,7 +324,7 @@ void __init ebus_init(void)
regs = of_get_property(dp, "reg", &len);
if (!regs) {
prom_printf("%s: can't find reg property\n",
- __FUNCTION__);
+ __func__);
prom_halt();
}
nreg = len / sizeof(struct linux_prom_pci_registers);
--
1.5.4.3.500.g83a2c
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] sparc: replace remaining __FUNCTION__ occurances
2008-03-03 19:27 [PATCH] sparc: replace remaining __FUNCTION__ occurances Harvey Harrison
@ 2008-03-03 19:41 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2008-03-03 19:41 UTC (permalink / raw)
To: harvey.harrison; +Cc: akpm, linux-kernel
From: Harvey Harrison <harvey.harrison@gmail.com>
Date: Mon, 03 Mar 2008 11:27:22 -0800
> __FUNCTION__ is gcc-specific, use __func__
>
> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-03-03 19:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-03 19:27 [PATCH] sparc: replace remaining __FUNCTION__ occurances Harvey Harrison
2008-03-03 19:41 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).