[PATCH] media: av7110: put spaces around operators

From: Daniel Watson
Date: Tue Mar 21 2023 - 02:45:36 EST


put spaces around '=' and '<=' to match style from checkpatch

Signed-off-by: Daniel Watson <ozzloy@xxxxxxxxx>
---
drivers/staging/media/av7110/av7110_hw.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/media/av7110/av7110_hw.h b/drivers/staging/media/av7110/av7110_hw.h
index 6380d8950c695..3274146c401f1 100644
--- a/drivers/staging/media/av7110/av7110_hw.h
+++ b/drivers/staging/media/av7110/av7110_hw.h
@@ -402,8 +402,8 @@ static inline u32 irdebi(struct av7110 *av7110, u32 config, int addr, u32 val, u
{
u32 res;

- res=av7110_debiread(av7110, config, addr, count);
- if (count<=4)
+ res = av7110_debiread(av7110, config, addr, count);
+ if (count <= 4)
memcpy(av7110->debi_virt, (char *) &res, count);
return res;
}
@@ -424,7 +424,7 @@ static inline u32 rdebi(struct av7110 *av7110, u32 config, int addr, u32 val, un
u32 res;

spin_lock_irqsave(&av7110->debilock, flags);
- res=av7110_debiread(av7110, config, addr, count);
+ res = av7110_debiread(av7110, config, addr, count);
spin_unlock_irqrestore(&av7110->debilock, flags);
return res;
}
--
2.34.1