Commit 0e739ba8 authored by Valentin Vidic's avatar Valentin Vidic Committed by Greg Kroah-Hartman
Browse files

staging: exfat: cleanup spacing for casts



Fix checkpatch.pl warnings:

  CHECK: No space is necessary after a cast

Signed-off-by: default avatarValentin Vidic <vvidic@valentin-vidic.from.hr>
Link: https://lore.kernel.org/r/20190908152616.25459-2-vvidic@valentin-vidic.from.hr


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 179e14c8
Loading
Loading
Loading
Loading
+44 −44
Original line number Diff line number Diff line
@@ -1749,7 +1749,7 @@ struct entry_set_cache_t *get_entry_set_in_dir(struct super_block *sb,
	es->offset = off;
	es->alloc_flag = p_dir->flags;

	pos = (struct dentry_t *) &(es->__buf);
	pos = (struct dentry_t *)&es->__buf;

	while (num_entries) {
		/*
+33 −33
Original line number Diff line number Diff line
@@ -2093,7 +2093,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
				fid->hint_last_clu = clu.dir;
			}

			fid->rwoffset = (s64) ++dentry;
			fid->rwoffset = (s64)(++dentry);

			if (p_fs->dev_ejected)
				ret = FFS_MEDIAERR;
@@ -2119,7 +2119,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)

	*(dir_entry->Name) = '\0';

	fid->rwoffset = (s64) ++dentry;
	fid->rwoffset = (s64)(++dentry);

	if (p_fs->dev_ejected)
		ret = FFS_MEDIAERR;