Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jan 2021 00:45:14 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: a45d90561696 - main - ppbus: Fix the direction of the PPISEPPA ioctl
Message-ID:  <202101190045.10J0jEEA046640@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj:

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

commit a45d90561696e7a5c76e38c6bf715e6190d2ca07
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2021-01-19 00:44:42 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2021-01-19 00:44:42 +0000

    ppbus: Fix the direction of the PPISEPPA ioctl
    
    PR:             252711
    Submitted by:   Eugene <merfi@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



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