[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-arm] [PATCH 4/5] hw/timer/exynos4210_mct: Fix checkpatch style
From: |
Peter Maydell |
Subject: |
Re: [Qemu-arm] [PATCH 4/5] hw/timer/exynos4210_mct: Fix checkpatch style errors |
Date: |
Thu, 2 Mar 2017 16:40:13 +0000 |
On 1 March 2017 at 18:26, Krzysztof Kozlowski <address@hidden> wrote:
> Fix checkpatch errors:
> 1. ERROR: spaces required around that '+' (ctx:VxV)
> 2. ERROR: spaces required around that '&' (ctx:VxV)
>
> No functional changes.
>
> Signed-off-by: Krzysztof Kozlowski <address@hidden>
> ---
> hw/timer/exynos4210_mct.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/timer/exynos4210_mct.c b/hw/timer/exynos4210_mct.c
> index 76634fb1b4fd..4dd3e441e2e6 100644
> --- a/hw/timer/exynos4210_mct.c
> +++ b/hw/timer/exynos4210_mct.c
> @@ -936,7 +936,7 @@ static void exynos4210_mct_update_freq(Exynos4210MCTState
> *s)
> {
> uint32_t freq = s->freq;
> s->freq = 24000000 /
> - ((MCT_CFG_GET_PRESCALER(s->reg_mct_cfg)+1) *
> + ((MCT_CFG_GET_PRESCALER(s->reg_mct_cfg) + 1) *
> MCT_CFG_GET_DIVIDER(s->reg_mct_cfg));
>
> if (freq != s->freq) {
> @@ -1160,7 +1160,7 @@ static void exynos4210_mct_write(void *opaque, hwaddr
> offset,
>
> DPRINTF("comparator %d write 0x%llx val << %d\n", index, value,
> shift);
>
> - if (offset&0x4) {
> + if (offset & 0x4) {
> s->g_timer.reg.wstat |= G_WSTAT_COMP_U(index);
> } else {
> s->g_timer.reg.wstat |= G_WSTAT_COMP_L(index);
> --
> 2.9.3
Wow, only 2 checkpatch errors in the whole file? :-)
Reviewed-by: Peter Maydell <address@hidden>
thanks
-- PMM
- [Qemu-arm] [RFC 0/5] hw: arm: exynos: Bring up secondary CPU + CPUIDLE issue, Krzysztof Kozlowski, 2017/03/01
- [Qemu-arm] [PATCH 1/5] hw/intc/exynos4210_gic: Fix GIC memory mappings for secondary CPU, Krzysztof Kozlowski, 2017/03/01
- [Qemu-arm] [PATCH 2/5] hw/intc/exynos4210_gic: Use more meaningful name for local variable, Krzysztof Kozlowski, 2017/03/01
- [Qemu-arm] [PATCH 4/5] hw/timer/exynos4210_mct: Fix checkpatch style errors, Krzysztof Kozlowski, 2017/03/01
- [Qemu-arm] [PATCH 3/5] hw/timer/exynos4210_mct: Cleanup indentation and empty new lines, Krzysztof Kozlowski, 2017/03/01
- [Qemu-arm] [PATCH 5/5] hw/timer/exynos4210_mct: Remove unused defines, Krzysztof Kozlowski, 2017/03/01
- Re: [Qemu-arm] [Qemu-devel] [RFC 0/5] hw: arm: exynos: Bring up secondary CPU + CPUIDLE issue, no-reply, 2017/03/01
- Re: [Qemu-arm] [RFC 0/5] hw: arm: exynos: Bring up secondary CPU + CPUIDLE issue, Peter Maydell, 2017/03/02