diff options
| author | Colin Ian King <[email protected]> | 2019-07-16 16:28:29 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2019-07-16 19:23:23 -0700 |
| commit | 850622136ff2a1296b2c8aa5280a74a6a3aabe4e (patch) | |
| tree | f4b7bafc9cb97f3ab10eec9d952d597f9f799e15 | |
| parent | 2fe7491d219428a32f09948e88bfaf8e71b9a66b (diff) | |
coda: clean up indentation, replace spaces with tab
Trivial fix to clean up indentation, replace spaces with tab
Link: http://lkml.kernel.org/r/ffc2bfa5a37ffcdf891c51b2e2ed618103965b24.1558117389.git.jaharkes@cs.cmu.edu
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Jan Harkes <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: Dan Carpenter <[email protected]>
Cc: David Howells <[email protected]>
Cc: Fabian Frederick <[email protected]>
Cc: Mikko Rapeli <[email protected]>
Cc: Sam Protsenko <[email protected]>
Cc: Yann Droneaud <[email protected]>
Cc: Zhouyang Jia <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | fs/coda/psdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/coda/psdev.c b/fs/coda/psdev.c index b4da2812499e..ac130d469a3e 100644 --- a/fs/coda/psdev.c +++ b/fs/coda/psdev.c @@ -360,7 +360,7 @@ static int init_coda_psdev(void) if (register_chrdev(CODA_PSDEV_MAJOR, "coda", &coda_psdev_fops)) { pr_err("%s: unable to get major %d\n", __func__, CODA_PSDEV_MAJOR); - return -EIO; + return -EIO; } coda_psdev_class = class_create(THIS_MODULE, "coda"); if (IS_ERR(coda_psdev_class)) { |