diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-16 07:46:00 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-10-17 22:17:37 +0200 |
commit | 9ac7a66f0e044a384069b02779201ed46c3c58bd (patch) | |
tree | b4229ea05bf6afecde25fd3b7b8513ec32536e04 /src/ec/lenovo/h8 | |
parent | 5b6bdcc1a5ac3d103dedec94bd712c8780ebf13c (diff) | |
download | coreboot-9ac7a66f0e044a384069b02779201ed46c3c58bd.tar.xz |
ec/lenovo/h8: fix whitespaces/tabs
Change-Id: Ib60061fa60e81e36234355aeecd6fefad8f5fed1
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Reviewed-on: https://review.coreboot.org/17037
Tested-by: build bot (Jenkins)
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/ec/lenovo/h8')
-rw-r--r-- | src/ec/lenovo/h8/h8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ec/lenovo/h8/h8.c b/src/ec/lenovo/h8/h8.c index 943bdd4738..933a6de4ed 100644 --- a/src/ec/lenovo/h8/h8.c +++ b/src/ec/lenovo/h8/h8.c @@ -150,7 +150,7 @@ u8 h8_build_id_and_function_spec_version(char *buf, u8 buf_len) for (i = 0; i < 8; i++) { c = ec_read(0xf0 + i); if (c < 0x20 || c > 0x7f) { - i = snprintf(str, sizeof (str), "*INVALID"); + i = snprintf(str, sizeof (str), "*INVALID"); break; } str[i] = c; @@ -296,7 +296,7 @@ static void h8_enable(struct device *dev) h8_set_audio_mute(0); #if !IS_ENABLED(CONFIG_H8_DOCK_EARLY_INIT) - h8_mainboard_init_dock (); + h8_mainboard_init_dock(); #endif } |