diff options
author | Furquan Shaikh <furquan@google.com> | 2018-02-23 16:07:25 -0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-02-26 15:05:08 +0000 |
commit | 8389fe6da309e6186b2c96c0363e1410dcd92a92 (patch) | |
tree | ff0525f8a3017b2928991db0bb65a5d2f1e50ea5 /src/ec/google | |
parent | 5ea714accea63ba3ff13411b813fb3cfa9caf932 (diff) | |
download | coreboot-8389fe6da309e6186b2c96c0363e1410dcd92a92.tar.xz |
ec/google/chromeec: Remove extra newline characters from printk
This change removes extra newline characters from print statements for
wake masks.
Change-Id: I13cde76bfb0f10b1dda8117c27f2891e909f9669
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/23858
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/ec/google')
-rw-r--r-- | src/ec/google/chromeec/ec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ec/google/chromeec/ec.c b/src/ec/google/chromeec/ec.c index c902c3fa7e..ef7a217c2d 100644 --- a/src/ec/google/chromeec/ec.c +++ b/src/ec/google/chromeec/ec.c @@ -272,7 +272,7 @@ static int __unused google_chromeec_set_mask(u8 type, u64 mask) static int google_chromeec_set_s3_lazy_wake_mask(uint64_t mask) { - printk(BIOS_DEBUG, "Chrome EC: Set S3 LAZY WAKE mask to 0x%016llx\n\n", + printk(BIOS_DEBUG, "Chrome EC: Set S3 LAZY WAKE mask to 0x%016llx\n", mask); return google_chromeec_set_mask (EC_HOST_EVENT_LAZY_WAKE_MASK_S3, mask); @@ -280,7 +280,7 @@ static int google_chromeec_set_s3_lazy_wake_mask(uint64_t mask) static int google_chromeec_set_s5_lazy_wake_mask(uint64_t mask) { - printk(BIOS_DEBUG, "Chrome EC: Set S5 LAZY WAKE mask to 0x%016llx\n\n", + printk(BIOS_DEBUG, "Chrome EC: Set S5 LAZY WAKE mask to 0x%016llx\n", mask); return google_chromeec_set_mask (EC_HOST_EVENT_LAZY_WAKE_MASK_S5, mask); @@ -288,7 +288,7 @@ static int google_chromeec_set_s5_lazy_wake_mask(uint64_t mask) static int google_chromeec_set_s0ix_lazy_wake_mask(uint64_t mask) { - printk(BIOS_DEBUG, "Chrome EC: Set S0iX LAZY WAKE mask to 0x%016llx\n\n", + printk(BIOS_DEBUG, "Chrome EC: Set S0iX LAZY WAKE mask to 0x%016llx\n", mask); return google_chromeec_set_mask (EC_HOST_EVENT_LAZY_WAKE_MASK_S0IX, mask); |