diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-01-22 11:53:56 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2023-02-17 16:08:04 +0000 |
commit | 39efcd1ba6cd66f6d2d027714891fd63fe564f5f (patch) | |
tree | 061f2499a745faf57ffc73d14c82658cd9a1ad67 /src/mainboard/google/rambi | |
parent | 3a54f4a7f15dc14a0f70ba781b488d63f5b6238e (diff) |
tree: Use __func__ instead of hard-coded names
Change-Id: I87e383ce2f28340dbc3c843dbf2ed0e47c00a723
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72382
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'src/mainboard/google/rambi')
-rw-r--r-- | src/mainboard/google/rambi/ec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/rambi/ec.c b/src/mainboard/google/rambi/ec.c index 7588eff8b9..f8b86ee533 100644 --- a/src/mainboard/google/rambi/ec.c +++ b/src/mainboard/google/rambi/ec.c @@ -16,7 +16,7 @@ void mainboard_ec_init(void) .s5_wake_events = MAINBOARD_EC_S5_WAKE_EVENTS, }; - printk(BIOS_DEBUG, "mainboard_ec_init\n"); + printk(BIOS_DEBUG, "%s\n", __func__); post_code(0xf0); google_chromeec_events_init(&info, s3_wakeup); |