Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

soc: fsl: cpm1: tsa: Fix blank line and spaces

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>

authored by

Herve Codina and committed by
Christophe Leroy
bfd4f092 37dbcd59

+3 -4
+3 -4
drivers/soc/fsl/qe/tsa.c
··· 18 18 #include <linux/platform_device.h> 19 19 #include <linux/slab.h> 20 20 21 - 22 21 /* TSA SI RAM routing tables entry */ 23 22 #define TSA_SIRAM_ENTRY_LAST BIT(16) 24 23 #define TSA_SIRAM_ENTRY_BYTE BIT(17) ··· 243 244 resource_size_t quarter; 244 245 resource_size_t half; 245 246 246 - quarter = tsa->si_ram_sz/4; 247 - half = tsa->si_ram_sz/2; 247 + quarter = tsa->si_ram_sz / 4; 248 + half = tsa->si_ram_sz / 2; 248 249 249 250 if (tdms == BIT(TSA_TDMA)) { 250 251 /* Only TDMA */ ··· 407 408 } 408 409 409 410 dev_dbg(tsa->dev, "tdm_id=%u, %s ts %u..%u -> %s\n", 410 - tdm_id, route_name, ts, ts+count-1, serial_name); 411 + tdm_id, route_name, ts, ts + count - 1, serial_name); 411 412 ts += count; 412 413 413 414 ret = tsa_add_entry(tsa, &area, count, serial_id);