diff options
| author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 01:27:34 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 09:43:09 -0700 | 
| commit | cb8fa61c2b8b29d422d7310f064d60022f18f89b (patch) | |
| tree | f5c8ac78b109e6c76e05250d19fd75e28c47dc74 /arch/um/drivers/chan_user.c | |
| parent | 54ae36f24b103e521dd683f66fe72b0584ccb7e2 (diff) | |
| download | olio-linux-3.10-cb8fa61c2b8b29d422d7310f064d60022f18f89b.tar.xz olio-linux-3.10-cb8fa61c2b8b29d422d7310f064d60022f18f89b.zip  | |
uml: arch/um/drivers formatting
Style fixes for the rest of the drivers.  arch/um/drivers should be pretty
CodingStyle-compliant now.
Except for the ubd driver, which will have to be treated separately.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/drivers/chan_user.c')
| -rw-r--r-- | arch/um/drivers/chan_user.c | 18 | 
1 files changed, 11 insertions, 7 deletions
diff --git a/arch/um/drivers/chan_user.c b/arch/um/drivers/chan_user.c index 8443d372f67..b88e93b3a39 100644 --- a/arch/um/drivers/chan_user.c +++ b/arch/um/drivers/chan_user.c @@ -1,4 +1,4 @@ -/*  +/*   * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)   * Licensed under the GPL   */ @@ -82,17 +82,21 @@ int generic_console_write(int fd, const char *buf, int n)  		if (err)  			goto error;  		new = save; -		/* The terminal becomes a bit less raw, to handle \n also as +		/* +		 * The terminal becomes a bit less raw, to handle \n also as  		 * "Carriage Return", not only as "New Line". Otherwise, the new -		 * line won't start at the first column.*/ +		 * line won't start at the first column. +		 */  		new.c_oflag |= OPOST;  		CATCH_EINTR(err = tcsetattr(fd, TCSAFLUSH, &new));  		if (err)  			goto error;  	}  	err = generic_write(fd, buf, n, NULL); -	/* Restore raw mode, in any case; we *must* ignore any error apart -	 * EINTR, except for debug.*/ +	/* +	 * Restore raw mode, in any case; we *must* ignore any error apart +	 * EINTR, except for debug. +	 */  	if (isatty(fd))  		CATCH_EINTR(tcsetattr(fd, TCSAFLUSH, &save));  	return err; @@ -167,13 +171,13 @@ static int winch_thread(void *arg)  		exit(1);  	} -	if(ioctl(pty_fd, TIOCSCTTY, 0) < 0){ +	if (ioctl(pty_fd, TIOCSCTTY, 0) < 0) {  		printk(UM_KERN_ERR "winch_thread : TIOCSCTTY failed on "  		       "fd %d err = %d\n", pty_fd, errno);  		exit(1);  	} -	if(tcsetpgrp(pty_fd, os_getpid()) < 0){ +	if (tcsetpgrp(pty_fd, os_getpid()) < 0) {  		printk(UM_KERN_ERR "winch_thread : tcsetpgrp failed on "  		       "fd %d err = %d\n", pty_fd, errno);  		exit(1);  |