mb/google/kahlee/irq_tables.c: Prefer using '"%s...", __func__'

In function write_pirq_routing_table(), the function name is used in a print
string. Use __func__ instead.

BUG=b:117642170
TEST=Build grunt.

Change-Id: Ibf8673c5b2cda1105aae1edb46f6589d55208c50
Signed-off-by: Richard Spiegel <richard.spiegel@silverbackltd.com>
Reviewed-on: https://review.coreboot.org/29245
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
Richard Spiegel 2018-10-23 14:30:09 -07:00 committed by Martin Roth
parent 8c614f2017
commit bb49bfce67
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ unsigned long write_pirq_routing_table(unsigned long addr)
if (sum != pirq->checksum)
pirq->checksum = sum;
printk(BIOS_INFO, "write_pirq_routing_table done.\n");
printk(BIOS_INFO, "%s done.\n", __func__);
return (unsigned long)pirq_info;
}