Commit 4e78141d authored by David S. Miller's avatar David S. Miller

arch/sparc64/kernel/ebus.c: Cure __FUNCTION__ usage.

parent 3ec67555
...@@ -247,7 +247,7 @@ static inline void *ebus_alloc(size_t size) ...@@ -247,7 +247,7 @@ static inline void *ebus_alloc(size_t size)
mem = kmalloc(size, GFP_ATOMIC); mem = kmalloc(size, GFP_ATOMIC);
if (!mem) if (!mem)
panic(__FUNCTION__ ": out of memory"); panic("ebus_alloc: out of memory");
memset((char *)mem, 0, size); memset((char *)mem, 0, size);
return mem; return mem;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment