git: 7d6221ff1447 - main - Match style in 3613896

From: David E. O'Brien <obrien_at_FreeBSD.org>
Date: Sun, 19 Oct 2025 05:57:23 UTC
The branch main has been updated by obrien:

URL: https://cgit.FreeBSD.org/src/commit/?id=7d6221ff14478ce70fab24c58e0326ff5c4baf52

commit 7d6221ff14478ce70fab24c58e0326ff5c4baf52
Author:     David E. O'Brien <obrien@FreeBSD.org>
AuthorDate: 2025-10-18 23:23:31 +0000
Commit:     David E. O'Brien <obrien@FreeBSD.org>
CommitDate: 2025-10-19 05:54:02 +0000

    Match style in 3613896
    
    Reviewed by:    kib
    Differential Revision:  https://reviews.freebsd.org/D53193
---
 sys/dev/gpio/gpioc.c | 2 +-
 sys/dev/hid/hidraw.c | 2 +-
 sys/dev/hid/u2f.c    | 2 +-
 sys/dev/null/null.c  | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys/dev/gpio/gpioc.c b/sys/dev/gpio/gpioc.c
index f690140af97b..517f7752daad 100644
--- a/sys/dev/gpio/gpioc.c
+++ b/sys/dev/gpio/gpioc.c
@@ -159,7 +159,7 @@ static const struct filterops gpioc_read_filterops = {
 	.f_detach =	gpioc_kqdetach,
 	.f_event =	gpioc_kqread,
 	.f_touch =	NULL,
-	.f_copy = knote_triv_copy,
+	.f_copy =	knote_triv_copy,
 };
 
 static struct gpioc_pin_event *
diff --git a/sys/dev/hid/hidraw.c b/sys/dev/hid/hidraw.c
index d17356642042..5b5e9b58f8bd 100644
--- a/sys/dev/hid/hidraw.c
+++ b/sys/dev/hid/hidraw.c
@@ -182,7 +182,7 @@ static const struct filterops hidraw_filterops_read = {
 	.f_isfd =	1,
 	.f_detach =	hidraw_kqdetach,
 	.f_event =	hidraw_kqread,
-	.f_copy = knote_triv_copy,
+	.f_copy =	knote_triv_copy,
 };
 
 static void
diff --git a/sys/dev/hid/u2f.c b/sys/dev/hid/u2f.c
index 4232322c61df..e1f696d72f01 100644
--- a/sys/dev/hid/u2f.c
+++ b/sys/dev/hid/u2f.c
@@ -132,7 +132,7 @@ static struct filterops u2f_filterops_read = {
 	.f_isfd =	1,
 	.f_detach =	u2f_kqdetach,
 	.f_event =	u2f_kqread,
-	.f_copy = knote_triv_copy,
+	.f_copy =	knote_triv_copy,
 };
 
 static int
diff --git a/sys/dev/null/null.c b/sys/dev/null/null.c
index c4f138b102c7..b5725de30bef 100644
--- a/sys/dev/null/null.c
+++ b/sys/dev/null/null.c
@@ -62,13 +62,13 @@ static int zero_ev(struct knote *kn, long hint);
 static const struct filterops one_fop = {
 	.f_isfd =	1,
 	.f_event =	one_ev,
-	.f_copy = knote_triv_copy,
+	.f_copy =	knote_triv_copy,
 };
 
 static const struct filterops zero_fop = {
 	.f_isfd =	1,
 	.f_event =	zero_ev,
-	.f_copy = knote_triv_copy,
+	.f_copy =	knote_triv_copy,
 };
 
 static struct cdevsw full_cdevsw = {