From 105eee97b0253fe6b66bf4c33fe3c4e17f30f05f Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 27 Dec 2023 10:09:52 -0800 Subject: [PATCH] ctl: Add missing comma after CTL_FLAG_ALREADY_DONE Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D42930 --- sys/cam/ctl/ctl_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cam/ctl/ctl_io.h b/sys/cam/ctl/ctl_io.h index 115e336bd354..aa7a9c35c876 100644 --- a/sys/cam/ctl/ctl_io.h +++ b/sys/cam/ctl/ctl_io.h @@ -106,7 +106,7 @@ typedef enum { CTL_FLAG_IO_CONT = 0x00100000, /* Continue I/O instead of completing */ #if 0 - CTL_FLAG_ALREADY_DONE = 0x00200000 /* I/O already completed */ + CTL_FLAG_ALREADY_DONE = 0x00200000, /* I/O already completed */ #endif CTL_FLAG_NO_DATAMOVE = 0x00400000, CTL_FLAG_DMA_QUEUED = 0x00800000, /* DMA queued but not started*/