Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/dev/random/randomdev.c 111119 2003-02-19 05:47:46Z imp $
---
> * $FreeBSD: head/sys/dev/random/randomdev.c 111815 2003-03-03 12:15:54Z phk $
65,78c65,72
< /* open */ random_open,
< /* close */ random_close,
< /* read */ random_read,
< /* write */ random_write,
< /* ioctl */ random_ioctl,
< /* poll */ random_poll,
< /* mmap */ nommap,
< /* strategy */ nostrategy,
< /* name */ "random",
< /* maj */ CDEV_MAJOR,
< /* dump */ nodump,
< /* psize */ nopsize,
< /* flags */ 0,
< /* kqfilter */ NULL
---
> .d_open = random_open,
> .d_close = random_close,
> .d_read = random_read,
> .d_write = random_write,
> .d_ioctl = random_ioctl,
> .d_poll = random_poll,
> .d_name = "random",
> .d_maj = CDEV_MAJOR,