diff options
Diffstat (limited to 'sys/net/if.c')
-rw-r--r-- | sys/net/if.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 7942065..2b3805e 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -144,19 +144,19 @@ static struct cdevsw net_cdevsw = { }; static int -netopen(dev_t dev, int flag, int mode, struct thread *td) +netopen(struct cdev *dev, int flag, int mode, struct thread *td) { return (0); } static int -netclose(dev_t dev, int flags, int fmt, struct thread *td) +netclose(struct cdev *dev, int flags, int fmt, struct thread *td) { return (0); } static int -netioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td) +netioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td) { struct ifnet *ifp; int error, idx; @@ -185,7 +185,7 @@ netioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td) } static int -netkqfilter(dev_t dev, struct knote *kn) +netkqfilter(struct cdev *dev, struct knote *kn) { struct klist *klist; struct ifnet *ifp; |