The branch main has been updated by dumbbell:

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

commit a7a05ace5d0221bed1fce7c8c09ca31a9eafeb11
Author:     Jean-Sébastien Pédron <dumbb...@freebsd.org>
AuthorDate: 2025-06-20 16:52:39 +0000
Commit:     Jean-Sébastien Pédron <dumbb...@freebsd.org>
CommitDate: 2025-08-09 12:26:24 +0000

    linuxkpi: Add `name` field to `struct resource`
    
    The i915 DRM driver started to display this field in log messages in
    Linux 6.9.
    
    Reviewed by:    emaste, manu
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D50989
---
 sys/compat/linuxkpi/common/include/linux/ioport.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/ioport.h 
b/sys/compat/linuxkpi/common/include/linux/ioport.h
index 444f3ad94602..763af2de7c4f 100644
--- a/sys/compat/linuxkpi/common/include/linux/ioport.h
+++ b/sys/compat/linuxkpi/common/include/linux/ioport.h
@@ -40,6 +40,7 @@
 struct resource {
        resource_size_t start;
        resource_size_t end;
+       const char *name;
 };
 
 static inline resource_size_t

Reply via email to