This patch converts __FUNCTION__ to __func__, since __func__ is standard.
[coreboot.git] / src / stream / rom_stream.c
index 9357cf7e0817f6f2d3f2ded326a429439184db4d..3c3614c60829aeffabfad0aca68711d20919a9a2 100644 (file)
@@ -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;