Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Jan 2021 13:09:03 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 252711] ppi.h PPISEPPA error
Message-ID:  <bug-252711-227@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D252711

            Bug ID: 252711
           Summary: ppi.h PPISEPPA error
           Product: Base System
           Version: 12.2-STABLE
          Hardware: amd64
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: kern
          Assignee: bugs@FreeBSD.org
          Reporter: merfi@nearly.ru

Header files /usr/src/sys/dev/ppbus/ppi.h and /usr/include/dev/ppbus/ppi.h
contains an error.

This path fix it:


--- ppi.h       2020-10-25 17:18:11.737811000 +0800
+++ ppi.h.patched       2021-01-15 20:58:07.407729000 +0800
@@ -51,6 +51,6 @@
 #define        PPISFIFO        _IOW('P', 21, u_int8_t)

 #define        PPIGEPPA        _IOR('P', 22, u_int8_t)
-#define        PPISEPPA        _IOR('P', 23, u_int8_t)
+#define        PPISEPPA        _IOW('P', 23, u_int8_t)

 #endif

--=20
You are receiving this mail because:
You are the assignee for the bug.=



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