aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/ntfs
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-01-13 18:59:48 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-01-13 18:59:48 +0000
commit83c643971428e2c04ecaa9f834be60eb349aa428 (patch)
treed75493b400c818d9baa0cbc348ed34597bba177e /sys/fs/ntfs
parentfe69257da238b804afc2a6e84c5397451fd6942a (diff)
downloadsrc-83c643971428e2c04ecaa9f834be60eb349aa428.tar.gz
src-83c643971428e2c04ecaa9f834be60eb349aa428.zip
Whitespace in vop_vector{} initializations.
Notes
Notes: svn path=/head/; revision=140196
Diffstat (limited to 'sys/fs/ntfs')
-rw-r--r--sys/fs/ntfs/ntfs_vnops.c38
1 files changed, 17 insertions, 21 deletions
diff --git a/sys/fs/ntfs/ntfs_vnops.c b/sys/fs/ntfs/ntfs_vnops.c
index 9346a463711c..4cc466d1cf8c 100644
--- a/sys/fs/ntfs/ntfs_vnops.c
+++ b/sys/fs/ntfs/ntfs_vnops.c
@@ -752,25 +752,21 @@ ntfs_pathconf(ap)
* Global vfs data structures
*/
struct vop_vector ntfs_vnodeops = {
- .vop_default = &default_vnodeops,
-
- .vop_getattr = ntfs_getattr,
- .vop_inactive = ntfs_inactive,
- .vop_reclaim = ntfs_reclaim,
- .vop_pathconf = ntfs_pathconf,
-
- .vop_cachedlookup = ntfs_lookup,
- .vop_lookup = vfs_cache_lookup,
-
- .vop_access = ntfs_access,
- .vop_close = ntfs_close,
- .vop_open = ntfs_open,
- .vop_readdir = ntfs_readdir,
- .vop_fsync = ntfs_fsync,
-
- .vop_bmap = ntfs_bmap,
- .vop_strategy = ntfs_strategy,
- .vop_read = ntfs_read,
- .vop_write = ntfs_write,
-
+ .vop_default = &default_vnodeops,
+
+ .vop_access = ntfs_access,
+ .vop_bmap = ntfs_bmap,
+ .vop_cachedlookup = ntfs_lookup,
+ .vop_close = ntfs_close,
+ .vop_fsync = ntfs_fsync,
+ .vop_getattr = ntfs_getattr,
+ .vop_inactive = ntfs_inactive,
+ .vop_lookup = vfs_cache_lookup,
+ .vop_open = ntfs_open,
+ .vop_pathconf = ntfs_pathconf,
+ .vop_read = ntfs_read,
+ .vop_readdir = ntfs_readdir,
+ .vop_reclaim = ntfs_reclaim,
+ .vop_strategy = ntfs_strategy,
+ .vop_write = ntfs_write,
};