Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Oct 2025 10:13:49 GMT
From:      Zhenlei Huang <zlei@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 11cfa861e3ff - main - p9fs: Use proper prototype for SYSINIT functions
Message-ID:  <202510131013.59DADnFB063959@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by zlei:

URL: https://cgit.FreeBSD.org/src/commit/?id=11cfa861e3ff83649c54e5781b541166dc73e80b

commit 11cfa861e3ff83649c54e5781b541166dc73e80b
Author:     Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2025-10-13 10:12:30 +0000
Commit:     Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2025-10-13 10:12:30 +0000

    p9fs: Use proper prototype for SYSINIT functions
    
    MFC after:      1 week
---
 sys/fs/p9fs/p9_transport.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys/fs/p9fs/p9_transport.c b/sys/fs/p9fs/p9_transport.c
index c82d81fedcd7..25eee984265c 100644
--- a/sys/fs/p9fs/p9_transport.c
+++ b/sys/fs/p9fs/p9_transport.c
@@ -34,9 +34,8 @@
 TAILQ_HEAD(, p9_trans_module) transports;
 
 static void
-p9_transport_init(void)
+p9_transport_init(void *dummy __unused)
 {
-
         TAILQ_INIT(&transports);
 }
 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202510131013.59DADnFB063959>