Date: Sat, 1 Nov 2025 00:46:43 GMT From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 3c44b007b9a2 - stable/15 - Match style in 3613896 Message-ID: <202511010046.5A10khDj001647@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=3c44b007b9a239c1809b0bda9bcdb3413bcdb46a commit 3c44b007b9a239c1809b0bda9bcdb3413bcdb46a Author: David E. O'Brien <obrien@FreeBSD.org> AuthorDate: 2025-10-18 23:23:31 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2025-11-01 00:46:11 +0000 Match style in 3613896 (cherry picked from commit 7d6221ff14478ce70fab24c58e0326ff5c4baf52) --- 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 = {home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202511010046.5A10khDj001647>
