From 689fdb91cbd09faf9b8a4b0864bfa3085472d997 Mon Sep 17 00:00:00 2001 From: dfr Date: Fri, 25 Jun 1999 07:50:26 +0000 Subject: Make this sample build again. --- share/examples/kld/cdev/module/cdev.c | 4 ++-- share/examples/kld/cdev/module/cdev.h | 2 +- share/examples/kld/cdev/module/cdevmod.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'share/examples/kld/cdev') diff --git a/share/examples/kld/cdev/module/cdev.c b/share/examples/kld/cdev/module/cdev.c index 4c9e139..8739a52 100644 --- a/share/examples/kld/cdev/module/cdev.c +++ b/share/examples/kld/cdev/module/cdev.c @@ -91,7 +91,7 @@ int mydev_open(dev_t dev, int flag, int otyp, struct proc *procp) { printf("mydev_open: dev_t=%d, flag=%x, otyp=%x, procp=%p\n", - dev, flag, otyp, procp); + dev2udev(dev), flag, otyp, procp); return (0); } @@ -99,7 +99,7 @@ int mydev_close(dev_t dev, int flag, int otyp, struct proc *procp) { printf("mydev_close: dev_t=%d, flag=%x, otyp=%x, procp=%p\n", - dev, flag, otyp, procp); + dev2udev(dev), flag, otyp, procp); return (0); } diff --git a/share/examples/kld/cdev/module/cdev.h b/share/examples/kld/cdev/module/cdev.h index ae07c34..34c8235 100644 --- a/share/examples/kld/cdev/module/cdev.h +++ b/share/examples/kld/cdev/module/cdev.h @@ -85,7 +85,7 @@ static struct cdevsw my_devsw = { nowrite, mydev_ioctl, nostop, - nullreset, + noreset, nodevtotty, NULL, nommap, diff --git a/share/examples/kld/cdev/module/cdevmod.c b/share/examples/kld/cdev/module/cdevmod.c index f844092..e2ee2e8 100644 --- a/share/examples/kld/cdev/module/cdevmod.c +++ b/share/examples/kld/cdev/module/cdevmod.c @@ -119,4 +119,4 @@ cdev_load(mod, cmd, arg) /* Now declare the module to the system */ -CDEV_MODULE(cdev_mod, CDEV_MAJOR, my_devsw, cdev_load, 0); +DEV_MODULE(cdev_mod, CDEV_MAJOR, -1, my_devsw, cdev_load, 0); -- cgit v1.1