diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-06-18 18:16:40 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-06-18 18:16:40 +0000 |
| commit | 7c2d2efd58fb9c7863ecacc59b3d05b6fd800962 (patch) | |
| tree | 8874c626d5d6663ddb7c81a0cd34260b7bdf70b8 /sys/opencrypto/cryptodev.c | |
| parent | d58a33063ad14d3226e7da399d54d7b5c21acb7f (diff) | |
Notes
Diffstat (limited to 'sys/opencrypto/cryptodev.c')
| -rw-r--r-- | sys/opencrypto/cryptodev.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/opencrypto/cryptodev.c b/sys/opencrypto/cryptodev.c index e711125deca58..7d544ab86c11e 100644 --- a/sys/opencrypto/cryptodev.c +++ b/sys/opencrypto/cryptodev.c @@ -93,13 +93,13 @@ static int cryptof_stat(struct file *, struct stat *, static int cryptof_close(struct file *, struct thread *); static struct fileops cryptofops = { - cryptof_rw, - cryptof_rw, - cryptof_ioctl, - cryptof_poll, - cryptof_kqfilter, - cryptof_stat, - cryptof_close + .fo_read = cryptof_rw, + .fo_write = cryptof_rw, + .fo_ioctl = cryptof_ioctl, + .fo_poll = cryptof_poll, + .fo_kqfilter = cryptof_kqfilter, + .fo_stat = cryptof_stat, + .fo_close = cryptof_close }; static struct csession *csefind(struct fcrypt *, u_int); |
