2008-08-30 Joel Sherrill <joel.sherrill@oarcorp.com>

* bootcard.c: Fix formatting.
	* console-polled.c: Error if minor < 2 not just <= 2.
This commit is contained in:
Joel Sherrill
2008-08-30 23:00:39 +00:00
parent 86a65b6f0b
commit b642940c49
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2008-08-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* bootcard.c: Fix formatting.
* console-polled.c: Error if minor < 2 not just <= 2.
2008-08-28 Till Straumann <strauman@slac.stanford.edu>
* vmeUniverse/vmeTsi148.h, vmeUniverse/vmeTsi148.c:

View File

@@ -98,7 +98,7 @@ char *rtems_progname;
}
}
bsp_libc_init( heap_start, heap_size, 0);
bsp_libc_init(heap_start, heap_size, 0);
return RTEMS_SUCCESSFUL;
}

View File

@@ -103,7 +103,7 @@ rtems_device_driver console_open(
};
assert( minor <= 1 );
if ( minor > 2 )
if ( minor > 1 )
return RTEMS_INVALID_NUMBER;
sc = rtems_termios_open (major, minor, arg, &pollCallbacks );