Make this sample build again.
This commit is contained in:
parent
9a9eb2b92b
commit
e523e96f26
@ -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);
|
||||
}
|
||||
|
||||
|
@ -85,7 +85,7 @@ static struct cdevsw my_devsw = {
|
||||
nowrite,
|
||||
mydev_ioctl,
|
||||
nostop,
|
||||
nullreset,
|
||||
noreset,
|
||||
nodevtotty,
|
||||
NULL,
|
||||
nommap,
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user