This patch converts __FUNCTION__ to __func__, since __func__ is standard.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3943 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -124,7 +124,7 @@ byte_offset_t stream_skip(byte_offset_t count)
|
||||
bytes = count;
|
||||
if ((rom + bytes - 1) > rom_end) {
|
||||
printk_warning("%6d:%s() - overflowed source buffer\n",
|
||||
__LINE__, __FUNCTION__);
|
||||
__LINE__, __func__);
|
||||
bytes = 0;
|
||||
if (rom <= rom_end) {
|
||||
bytes = (rom_end - rom) + 1;
|
||||
|
Reference in New Issue
Block a user