]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
soc: fsl: cpm1: tsa: Fix blank line and spaces
authorHerve Codina <herve.codina@bootlin.com>
Thu, 8 Aug 2024 07:10:58 +0000 (09:10 +0200)
committerChristophe Leroy <christophe.leroy@csgroup.eu>
Tue, 3 Sep 2024 05:49:17 +0000 (07:49 +0200)
checkpatch.pl raises the following issues
  CHECK: Please don't use multiple blank lines
  CHECK: spaces preferred around that '/' (ctx:VxV)
  CHECK: spaces preferred around that '+' (ctx:VxV)
  CHECK: spaces preferred around that '-' (ctx:VxV)

Fix them.

Signed-off-by: Herve Codina <herve.codina@bootlin.com>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Link: https://lore.kernel.org/r/20240808071132.149251-6-herve.codina@bootlin.com
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
drivers/soc/fsl/qe/tsa.c

index dc4dda17dab860556d79090b78da2fcecad38d6b..7b1032fb1572d0697ee70a85b96cf395741c254d 100644 (file)
@@ -18,7 +18,6 @@
 #include <linux/platform_device.h>
 #include <linux/slab.h>
 
-
 /* TSA SI RAM routing tables entry */
 #define TSA_SIRAM_ENTRY_LAST           BIT(16)
 #define TSA_SIRAM_ENTRY_BYTE           BIT(17)
@@ -244,8 +243,8 @@ static void tsa_init_entries_area(struct tsa *tsa, struct tsa_entries_area *area
        resource_size_t quarter;
        resource_size_t half;
 
-       quarter = tsa->si_ram_sz/4;
-       half = tsa->si_ram_sz/2;
+       quarter = tsa->si_ram_sz / 4;
+       half = tsa->si_ram_sz / 2;
 
        if (tdms == BIT(TSA_TDMA)) {
                /* Only TDMA */
@@ -408,7 +407,7 @@ static int tsa_of_parse_tdm_route(struct tsa *tsa, struct device_node *tdm_np,
                }
 
                dev_dbg(tsa->dev, "tdm_id=%u, %s ts %u..%u -> %s\n",
-                       tdm_id, route_name, ts, ts+count-1, serial_name);
+                       tdm_id, route_name, ts, ts + count - 1, serial_name);
                ts += count;
 
                ret = tsa_add_entry(tsa, &area, count, serial_id);