]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
drivers: renesas: rcar: common: Code cleanup
authorBiju Das <biju.das.jz@bp.renesas.com>
Sun, 13 Dec 2020 20:17:01 +0000 (20:17 +0000)
committerBiju Das <biju.das.jz@bp.renesas.com>
Mon, 11 Jan 2021 11:58:04 +0000 (11:58 +0000)
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 <biju.das.jz@bp.renesas.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Change-Id: I41d146e86889640d11e88c0717039353ddceff0d

drivers/renesas/rcar/common.c

index 42bdce5797d17f88faad2a025026bb435229c8aa..9b7c1eb16c148f1396c8bb7438bada69918b93f2 100644 (file)
@@ -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);