Skip to content

Commit 43960dc

Browse files
author
Steve French
committed
smb3: minor RDMA cleanup
Some minor smbdirect debug cleanup spotted by checkpatch Cc: Long Li <[email protected]> Reviewed-by: Bharath SM <[email protected]> Signed-off-by: Steve French <[email protected]>
1 parent 37de5a8 commit 43960dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/smb/client/cifs_debug.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,14 +746,14 @@ static ssize_t name##_write(struct file *file, const char __user *buffer, \
746746
size_t count, loff_t *ppos) \
747747
{ \
748748
int rc; \
749-
rc = kstrtoint_from_user(buffer, count, 10, & name); \
749+
rc = kstrtoint_from_user(buffer, count, 10, &name); \
750750
if (rc) \
751751
return rc; \
752752
return count; \
753753
} \
754754
static int name##_proc_show(struct seq_file *m, void *v) \
755755
{ \
756-
seq_printf(m, "%d\n", name ); \
756+
seq_printf(m, "%d\n", name); \
757757
return 0; \
758758
} \
759759
static int name##_open(struct inode *inode, struct file *file) \

0 commit comments

Comments
 (0)