From 3512c1b38697382a2841f18157194cbc3f4e661d Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 22 Feb 2003 10:02:05 +0000 Subject: [PATCH] Use system noioctl() instead of homerolled. --- sys/dev/amr/amr_disk.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/sys/dev/amr/amr_disk.c b/sys/dev/amr/amr_disk.c index af489b5fb07..3fc2b74ff92 100644 --- a/sys/dev/amr/amr_disk.c +++ b/sys/dev/amr/amr_disk.c @@ -87,7 +87,6 @@ static int amrd_detach(device_t dev); static d_open_t amrd_open; static d_close_t amrd_close; static d_strategy_t amrd_strategy; -static d_ioctl_t amrd_ioctl; #define AMRD_CDEV_MAJOR 133 @@ -96,7 +95,7 @@ static struct cdevsw amrd_cdevsw = { /* close */ amrd_close, /* read */ physread, /* write */ physwrite, - /* ioctl */ amrd_ioctl, + /* ioctl */ noioctl, /* poll */ nopoll, /* mmap */ nommap, /* strategy */ amrd_strategy, @@ -182,13 +181,6 @@ amrd_close(dev_t dev, int flags, int fmt, d_thread_t *td) return (0); } -static int -amrd_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, d_thread_t *td) -{ - - return (ENOTTY); -} - /* * Read/write routine for a buffer. Finds the proper unit, range checks * arguments, and schedules the transfer. Does not wait for the transfer