From 95e1166e8d176f2530cfcc22a1f7b47a6e6ade21 Mon Sep 17 00:00:00 2001 From: Biju Das Date: Sun, 13 Dec 2020 20:17:01 +0000 Subject: [PATCH] drivers: renesas: rcar: common: Code cleanup This patch fixes the below checkpatch warnings Line 13: WARNING: please, no spaces at the start of a line Line 15: WARNING: please, no spaces at the start of a line Line 18: WARNING: Missing a blank line after declarations Line 24: WARNING: please, no spaces at the start of a line Line 26: WARNING: please, no spaces at the start of a line Line 29: WARNING: Missing a blank line after declarations Signed-off-by: Biju Das Reviewed-by: Lad Prabhakar Change-Id: I41d146e86889640d11e88c0717039353ddceff0d --- drivers/renesas/rcar/common.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/drivers/renesas/rcar/common.c b/drivers/renesas/rcar/common.c index 42bdce579..9b7c1eb16 100644 --- a/drivers/renesas/rcar/common.c +++ b/drivers/renesas/rcar/common.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Renesas Electronics Corporation. All rights reserved. + * Copyright (c) 2018-2020, Renesas Electronics Corporation. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -8,24 +8,27 @@ #include "rcar_private.h" -void #if IMAGE_BL31 - __attribute__ ((section(".system_ram"))) +void __attribute__ ((section(".system_ram"))) cpg_write(uintptr_t regadr, uint32_t regval) +#else +void cpg_write(uintptr_t regadr, uint32_t regval) #endif - cpg_write(uintptr_t regadr, uint32_t regval) { - uint32_t value = (regval); + uint32_t value = regval; + mmio_write_32((uintptr_t) RCAR_CPGWPR, ~value); mmio_write_32(regadr, value); } -void #if IMAGE_BL31 - __attribute__ ((section(".system_ram"))) +void __attribute__ ((section(".system_ram"))) mstpcr_write(uint32_t mstpcr, uint32_t mstpsr, + uint32_t target_bit) +#else +void mstpcr_write(uint32_t mstpcr, uint32_t mstpsr, uint32_t target_bit) #endif - mstpcr_write(uint32_t mstpcr, uint32_t mstpsr, uint32_t target_bit) { uint32_t reg; + reg = mmio_read_32(mstpcr); reg &= ~target_bit; cpg_write(mstpcr, reg);