diff options
| author | Graeme Russ <graeme.russ@gmail.com> | 2011-11-08 02:33:15 +0000 | 
|---|---|---|
| committer | Graeme Russ <graeme.russ@gmail.com> | 2011-11-29 21:03:43 +1100 | 
| commit | 83088afbba0c142fda5313866abd1e679d0f9e78 (patch) | |
| tree | dc968778c47d8aa2f915e928838b5bd72b71ff18 /arch/x86/lib/video.c | |
| parent | 01a0f5a1ebba7eeccf13fc5992ed59e8614fd58a (diff) | |
| download | olio-uboot-2014.01-83088afbba0c142fda5313866abd1e679d0f9e78.tar.xz olio-uboot-2014.01-83088afbba0c142fda5313866abd1e679d0f9e78.zip | |
cosmetic: checkpatch cleanup of arch/x86/lib/*.c
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'arch/x86/lib/video.c')
| -rw-r--r-- | arch/x86/lib/video.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/x86/lib/video.c b/arch/x86/lib/video.c index 0efcf3f45..3d6b24d62 100644 --- a/arch/x86/lib/video.c +++ b/arch/x86/lib/video.c @@ -123,7 +123,7 @@ static void __video_putc(const char c, int *x, int *y)  static void video_putc(const char c)  { -	int x,y,pos; +	int x, y, pos;  	x = orig_x;  	y = orig_y; @@ -142,7 +142,7 @@ static void video_putc(const char c)  static void video_puts(const char *s)  { -	int x,y,pos; +	int x, y, pos;  	char c;  	x = orig_x; @@ -187,7 +187,7 @@ int video_init(void)  	printf("pos %x %d %d\n", pos, orig_x, orig_y);  #endif  	if (orig_y > lines) -		orig_x = orig_y =0; +		orig_x = orig_y = 0;  	memset(&vga_dev, 0, sizeof(vga_dev));  	strcpy(vga_dev.name, "vga"); |