Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: pohmelfs: fix spaces and TAB coding style issue in netfs.h

This is a patch to the netfs.h file that fixed up a TAB and spaces
WARNING found by the checkpatch.pl tools, like
WARNING: please, no space before tabs

Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Ruslan Pisarev and committed by
Greg Kroah-Hartman
75cc5d9c 9b835ea8

+6 -6
+6 -6
drivers/staging/pohmelfs/netfs.h
··· 489 489 struct netfs_state { 490 490 struct mutex __state_lock; /* Can not allow to use the same socket simultaneously */ 491 491 struct mutex __state_send_lock; 492 - struct netfs_cmd cmd; /* Cached command */ 492 + struct netfs_cmd cmd; /* Cached command */ 493 493 struct netfs_inode_info info; /* Cached inode info */ 494 494 495 495 void *data; /* Cached some data */ ··· 500 500 struct task_struct *thread; /* Async receiving thread */ 501 501 502 502 /* Waiting/polling machinery */ 503 - wait_queue_t wait; 504 - wait_queue_head_t *whead; 505 - wait_queue_head_t thread_wait; 503 + wait_queue_t wait; 504 + wait_queue_head_t *whead; 505 + wait_queue_head_t thread_wait; 506 506 507 507 struct mutex trans_lock; 508 508 struct rb_root trans_root; ··· 620 620 /* 621 621 * Timed checks: stale transactions, inodes to be freed and so on. 622 622 */ 623 - struct delayed_work dwork; 624 - struct delayed_work drop_dwork; 623 + struct delayed_work dwork; 624 + struct delayed_work drop_dwork; 625 625 626 626 struct super_block *sb; 627 627