aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2025-10-18 23:23:31 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2025-10-19 05:54:02 +0000
commit7d6221ff14478ce70fab24c58e0326ff5c4baf52 (patch)
tree455ec01ed21f53b55e758838444dab14cffc1b6f
parent6fa18fe74461497f9a557af806552d246159272e (diff)
Match style in 3613896
Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D53193
-rw-r--r--sys/dev/gpio/gpioc.c2
-rw-r--r--sys/dev/hid/hidraw.c2
-rw-r--r--sys/dev/hid/u2f.c2
-rw-r--r--sys/dev/null/null.c4
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 = {