diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2017-06-18 16:06:55 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-22 16:05:28 +0000 |
commit | 80d11b2d58e034d0da0dc7226e2635cbb67287a9 (patch) | |
tree | 8ea7bf5baef73cd4341ce968be2ae93911a816e7 /src | |
parent | 9c0772255527d163b8ab3299fcad96473f59b7d9 (diff) | |
download | coreboot-80d11b2d58e034d0da0dc7226e2635cbb67287a9.tar.xz |
cpu/allwinner/a10/clock.h: Add missing bracket
Code checked manually
Change-Id: I92f0b5d47c60c259171c4db90fb5003f4eb8580b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/20260
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/allwinner/a10/clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/allwinner/a10/clock.h b/src/cpu/allwinner/a10/clock.h index a723ecc0b6..31bfc66041 100644 --- a/src/cpu/allwinner/a10/clock.h +++ b/src/cpu/allwinner/a10/clock.h @@ -51,7 +51,7 @@ #define APB1_CLK_SRC_32K (2 << 24) #define APB1_RAT_N_MASK (3 << 16) #define APB1_RAT_N(m) (((m) & 0x3) << 16) -#define APB1_RAT_M_MASK 0x1f << 0) +#define APB1_RAT_M_MASK (0x1f << 0) #define APB1_RAT_M(n) (((n) & 0x1f) << 0) /* PLL5_CFG values */ |