From e7b632b58844d84ab50723a553011f0c91f6e6a5 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 13 Nov 1995 08:52:08 +0000 Subject: [PATCH] Replaced nosys() by lkm_nullcmd(). --- sys/i386/isa/atapi.c | 2 +- sys/sys/mount.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/i386/isa/atapi.c b/sys/i386/isa/atapi.c index 6678bcaf4df..0b55b7d5dc9 100644 --- a/sys/i386/isa/atapi.c +++ b/sys/i386/isa/atapi.c @@ -1027,7 +1027,7 @@ int atapi_unload (struct lkm_table *lkmtp, int cmd) */ int atapi_mod (struct lkm_table *lkmtp, int cmd, int ver) { - DISPATCH (lkmtp, cmd, ver, atapi_load, atapi_unload, nosys); + DISPATCH (lkmtp, cmd, ver, atapi_load, atapi_unload, lkm_nullcmd); } #endif /* ATAPI_MODULE */ diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 37e21f87a29..b7d8c947e0e 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mount.h 8.13 (Berkeley) 3/27/94 - * $Id: mount.h,v 1.27 1995/09/09 18:10:30 davidg Exp $ + * $Id: mount.h,v 1.28 1995/11/05 23:36:07 dyson Exp $ */ #ifndef _SYS_MOUNT_H_ @@ -290,7 +290,7 @@ struct vfsops { MOD_VFS(#fsname,index,&MODVNOPS,&_fs_vfsconf); \ int \ fsname ## _mod(struct lkm_table *lkmtp, int cmd, int ver) { \ - DISPATCH(lkmtp, cmd, ver, nosys, nosys, nosys); } + DISPATCH(lkmtp, cmd, ver, lkm_nullcmd, lkm_nullcmd, lkm_nullcmd); } #else #define VFS_SET(vfsops, fsname, index, flags) \