summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/sys/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/uts/common/sys/stream.h')
-rw-r--r--usr/src/uts/common/sys/stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/sys/stream.h b/usr/src/uts/common/sys/stream.h
index 273116f971..ea2c3d8e9a 100644
--- a/usr/src/uts/common/sys/stream.h
+++ b/usr/src/uts/common/sys/stream.h
@@ -23,6 +23,7 @@
* Use is subject to license terms.
* Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
* Copyright 2015 Joyent, Inc. All rights reserved.
+ * Copyright 2022 Garrett D'Amore
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
@@ -444,7 +445,7 @@ typedef struct bcache {
*/
#define M_DATA 0x00 /* regular data */
#define M_PROTO 0x01 /* protocol control */
-#define M_MULTIDATA 0x02 /* reserved for Multidata use only */
+#define M_MULTIDATA 0x02 /* obsolete, do not use */
/*
* Control messages (regular and priority)
@@ -744,7 +745,6 @@ typedef struct cmdblk {
*/
#define datamsg(type) \
((type) == M_DATA || \
- (type) == M_MULTIDATA || \
(type) == M_PROTO || \
(type) == M_PCPROTO || \
(type) == M_DELAY)