nfscommon: Clean up the code by removing the vnode_vtype() macro

The vnode_vtype() macro was used to make the code compatible
with Mac OSX, for the Mac OSX port.
For FreeBSD, this macro just obscured the code and, therefore,
use of the macro has been deleted by previous commits.
This commit deletes the, now unused, macro.

This commit should not result in a semantics change.
This commit is contained in:
Rick Macklem 2022-06-24 13:56:35 -07:00
parent 1ebc14c900
commit c11e64ce51

View File

@ -38,6 +38,5 @@
typedef struct mount * mount_t;
typedef struct vnode * vnode_t;
#define vnode_vtype(v) ((v)->v_type)
#endif /* _NFS_NFSKPIPORT_H */