[PATCH v1] kernel: Moves trailing statements to next line

Atul Kumar Pant posted 1 patch 2 years, 4 months ago
kernel/audit.c       | 3 ++-
kernel/auditfilter.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
[PATCH v1] kernel: Moves trailing statements to next line
Posted by Atul Kumar Pant 2 years, 4 months ago
Fixes following checkpatch.pl issue:
ERROR: trailing statements should be on next line

Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
---
 kernel/audit.c       | 3 ++-
 kernel/auditfilter.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/kernel/audit.c b/kernel/audit.c
index 9bc0b0301198..a5393eda7f9d 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -323,7 +323,8 @@ static inline int audit_rate_check(void)
 	unsigned long		now;
 	int			retval	   = 0;
 
-	if (!audit_rate_limit) return 1;
+	if (!audit_rate_limit)
+		return 1;
 
 	spin_lock_irqsave(&lock, flags);
 	if (++messages < audit_rate_limit) {
diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c
index 42d99896e7a6..a25757f09255 100644
--- a/kernel/auditfilter.c
+++ b/kernel/auditfilter.c
@@ -694,7 +694,8 @@ static struct audit_rule_data *audit_krule_to_data(struct audit_krule *krule)
 			data->values[i] = f->val;
 		}
 	}
-	for (i = 0; i < AUDIT_BITMASK_SIZE; i++) data->mask[i] = krule->mask[i];
+	for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
+		data->mask[i] = krule->mask[i];
 
 	return data;
 }
-- 
2.25.1
Re: [PATCH v1] kernel: Moves trailing statements to next line
Posted by Paul Moore 2 years, 4 months ago
On Aug 15, 2023 Atul Kumar Pant <atulpant.linux@gmail.com> wrote:
> 
> Fixes following checkpatch.pl issue:
> ERROR: trailing statements should be on next line
> 
> Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
> ---
>  kernel/audit.c       | 3 ++-
>  kernel/auditfilter.c | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)

Changed the subject line to "audit: move trailing statements to next
line", otherwise it looked fine.  Merged into audit/next.

--
paul-moore.com