git: a45d90561696 - main - ppbus: Fix the direction of the PPISEPPA ioctl
Mark Johnston
markj at FreeBSD.org
Tue Jan 19 00:45:15 UTC 2021
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=a45d90561696e7a5c76e38c6bf715e6190d2ca07
commit a45d90561696e7a5c76e38c6bf715e6190d2ca07
Author: Mark Johnston <markj at FreeBSD.org>
AuthorDate: 2021-01-19 00:44:42 +0000
Commit: Mark Johnston <markj at FreeBSD.org>
CommitDate: 2021-01-19 00:44:42 +0000
ppbus: Fix the direction of the PPISEPPA ioctl
PR: 252711
Submitted by: Eugene <merfi at nearly.ru>
---
sys/dev/ppbus/ppi.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/ppbus/ppi.h b/sys/dev/ppbus/ppi.h
index 4fb16e921179..b6f406a4aabb 100644
--- a/sys/dev/ppbus/ppi.h
+++ b/sys/dev/ppbus/ppi.h
@@ -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
More information about the dev-commits-src-main
mailing list