From 45a2482a9e286b06ca5a6e7d84c177ce801b0637 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 1 Oct 1999 14:10:50 +0000 Subject: [PATCH] Move a couple of ioctl defines from wormcontrol.c to wormio.h. These are used in the dev/ata/atapi-cd driver too. --- sys/sys/wormio.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/sys/wormio.h b/sys/sys/wormio.h index 56fbac46d146..4d95d348c14f 100644 --- a/sys/sys/wormio.h +++ b/sys/sys/wormio.h @@ -1,4 +1,5 @@ /* Shared between kernel & process */ +/* $FreeBSD$ */ #ifndef _SYS_WORMIO_H_ #define _SYS_WORMIO_H_ @@ -98,6 +99,9 @@ struct wormio_first_writable_addr { }; #define WORMIOCFIRSTWRITABLEADDR _IOWR('W', 33, struct wormio_first_writable_addr) +#define CDRIOCBLANK _IO('c', 100) +#define CDRIOCNEXTWRITEABLEADDR _IOR('c', 101, int) + /* Errors/warnings */ #define WORM_SEQUENCE_ERROR 1 #define WORM_DUMMY_BLOCKS_ADDED 2