summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2018-03-17 05:00:07 +0000
committereadler <eadler@FreeBSD.org>2018-03-17 05:00:07 +0000
commitf469663ebefbf2b5718f39c23bd1273e7fa778b6 (patch)
tree1a8ec75bc5099e3b4d9a1a28d53d39cb36038596 /share
parentc5ae3d77cd5c5723fc5e99068f14b41f39f68443 (diff)
downloadFreeBSD-src-f469663ebefbf2b5718f39c23bd1273e7fa778b6.zip
FreeBSD-src-f469663ebefbf2b5718f39c23bd1273e7fa778b6.tar.gz
MFC r328428:
example cdev: use make_dev_s Make use of make_dev_s in the example cdev. While here, fix warnings.
Diffstat (limited to 'share')
-rw-r--r--share/examples/kld/cdev/module/cdev.c10
-rw-r--r--share/examples/kld/cdev/module/cdevmod.c11
2 files changed, 14 insertions, 7 deletions
diff --git a/share/examples/kld/cdev/module/cdev.c b/share/examples/kld/cdev/module/cdev.c
index dda63c4..27d6cde 100644
--- a/share/examples/kld/cdev/module/cdev.c
+++ b/share/examples/kld/cdev/module/cdev.c
@@ -102,7 +102,7 @@ mydev_open(struct cdev *dev, int flag, int otyp, struct thread *td)
{
struct proc *procp = td->td_proc;
- printf("mydev_open: dev_t=%d, flag=%x, otyp=%x, procp=%p\n",
+ printf("mydev_open: dev_t=%lu, flag=%x, otyp=%x, procp=%p\n",
dev2udev(dev), flag, otyp, procp);
memset(&buf, '\0', 513);
len = 0;
@@ -114,7 +114,7 @@ mydev_close(struct cdev *dev, int flag, int otyp, struct thread *td)
{
struct proc *procp = td->td_proc;
- printf("mydev_close: dev_t=%d, flag=%x, otyp=%x, procp=%p\n",
+ printf("mydev_close: dev_t=%lu, flag=%x, otyp=%x, procp=%p\n",
dev2udev(dev), flag, otyp, procp);
return (0);
}
@@ -126,7 +126,7 @@ mydev_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int mode,
int error = 0;
struct proc *procp = td->td_proc;
- printf("mydev_ioctl: dev_t=%d, cmd=%lx, arg=%p, mode=%x procp=%p\n",
+ printf("mydev_ioctl: dev_t=%lu, cmd=%lx, arg=%p, mode=%x procp=%p\n",
dev2udev(dev), cmd, arg, mode, procp);
switch(cmd) {
@@ -150,7 +150,7 @@ mydev_write(struct cdev *dev, struct uio *uio, int ioflag)
{
int err = 0;
- printf("mydev_write: dev_t=%d, uio=%p, ioflag=%d\n",
+ printf("mydev_write: dev_t=%lu, uio=%p, ioflag=%d\n",
dev2udev(dev), uio, ioflag);
err = copyinstr(uio->uio_iov->iov_base, &buf, 512, &len);
@@ -170,7 +170,7 @@ mydev_read(struct cdev *dev, struct uio *uio, int ioflag)
{
int err = 0;
- printf("mydev_read: dev_t=%d, uio=%p, ioflag=%d\n",
+ printf("mydev_read: dev_t=%lu, uio=%p, ioflag=%d\n",
dev2udev(dev), uio, ioflag);
if (len <= 0) {
diff --git a/share/examples/kld/cdev/module/cdevmod.c b/share/examples/kld/cdev/module/cdevmod.c
index f21723f..5503f12 100644
--- a/share/examples/kld/cdev/module/cdevmod.c
+++ b/share/examples/kld/cdev/module/cdevmod.c
@@ -107,6 +107,7 @@ static int
cdev_load(module_t mod, int cmd, void *arg)
{
int err = 0;
+ struct make_dev_args mda;
switch (cmd) {
case MOD_LOAD:
@@ -118,8 +119,14 @@ cdev_load(module_t mod, int cmd, void *arg)
printf("Copyright (c) 1998\n");
printf("Rajesh Vaidheeswarran\n");
printf("All rights reserved\n");
- sdev = make_dev(&my_devsw, 0, UID_ROOT, GID_WHEEL, 0600, "cdev");
- break; /* Success*/
+
+ make_dev_args_init(&mda);
+ mda.mda_devsw = &my_devsw;
+ mda.mda_uid = UID_ROOT;
+ mda.mda_gid = GID_WHEEL;
+ mda.mda_mode = 0600;
+ err = make_dev_s(&mda, &sdev, "cdev");
+ break;
case MOD_UNLOAD:
printf("Unloaded kld character device driver\n");
OpenPOWER on IntegriCloud