diff options
author | Tristan Shieh <tristan.shieh@mediatek.com> | 2018-06-06 12:52:20 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-07 07:42:43 +0000 |
commit | f42db110d0174f05745e3558067d114eae37825b (patch) | |
tree | a5a52a630e8704369f57d6d21077e95c13733cb7 /src/soc/mediatek/mt8173/wdt.c | |
parent | 794284ff0ee92f7f60c4d33dbf43bf007979389c (diff) | |
download | coreboot-f42db110d0174f05745e3558067d114eae37825b.tar.xz |
mediatek: Refine whitespace and formating changes
This patch fix whitespace and formating issues:
1. Using two spaces between code and single line comment.
2. No space after asterisk.
3. Fix checkpatch error.
4. Remove spaces after cast operators.
BUG=b:80501386
BRANCH=none
TEST=the refactored code works fine on the new platform (with the rest
of the patches applied) and Elm platform
Change-Id: Ib36c99b141c94220776fab606eb36af8f64f65bb
Signed-off-by: Tristan Shieh <tristan.shieh@mediatek.com>
Reviewed-on: https://review.coreboot.org/26880
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/mediatek/mt8173/wdt.c')
-rw-r--r-- | src/soc/mediatek/mt8173/wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8173/wdt.c b/src/soc/mediatek/mt8173/wdt.c index 22f1c87ac5..85fdbf57f4 100644 --- a/src/soc/mediatek/mt8173/wdt.c +++ b/src/soc/mediatek/mt8173/wdt.c @@ -20,7 +20,7 @@ #include <soc/wdt.h> #include <vendorcode/google/chromeos/chromeos.h> -static struct mt8173_wdt_regs * const mt8173_wdt = (void *)RGU_BASE; +static struct mt8173_wdt_regs *const mt8173_wdt = (void *)RGU_BASE; int mtk_wdt_init(void) { |