From a45d90561696e7a5c76e38c6bf715e6190d2ca07 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Mon, 18 Jan 2021 19:44:42 -0500 Subject: [PATCH] ppbus: Fix the direction of the PPISEPPA ioctl PR: 252711 Submitted by: Eugene --- 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 4fb16e92117..b6f406a4aab 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