ctl: Add missing comma after CTL_FLAG_ALREADY_DONE

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D42930
This commit is contained in:
John Baldwin 2023-12-27 10:09:52 -08:00
parent dfbb6f2e59
commit 105eee97b0

View file

@ -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*/