protect new cdevsw entries with "#if (__FreeBSD_version > 502102)"

This commit is contained in:
Jim Rees 2004-02-22 05:49:38 +00:00
parent 162f81b382
commit 3ea5b421eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126112

View File

@ -94,13 +94,15 @@ static d_ioctl_t nfs4dev_ioctl;
static d_poll_t nfs4dev_poll;
static struct cdevsw nfs4dev_cdevsw = {
#if (__FreeBSD_version > 502102)
.d_version = D_VERSION,
.d_flags = D_NEEDGIANT,
#endif
.d_open = nfs4dev_open,
.d_close = nfs4dev_close,
.d_ioctl = nfs4dev_ioctl,
.d_poll = nfs4dev_poll,
.d_name = NFS4DEV_NAME
.d_name = NFS4DEV_NAME,
};
static int nfs4dev_reply(caddr_t);