On 11/13/23 06:33, zilong zhang wrote:
Replace invisible character with a space.
The diff looks like this on my terminal:
-^L
+
Signed-off-by: zilong zhang <NeoPerceval@xxxxxxxxxxx>
---
drivers/scsi/st.c | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c
index 338aa8c42968..19d86257036d 100644
--- a/drivers/scsi/st.c
+++ b/drivers/scsi/st.c
@@ -230,7 +230,7 @@ static DEFINE_SPINLOCK(st_use_lock);
static DEFINE_IDR(st_index_idr);
-
+
The patch subject is wrong. As Steffen pointed out, the form feeds are
intentional. Additionally, the above changes do not follow the Linux kernel
coding style. One blank line is sufficient to separate function definitions.
Thanks,
Bart.