forked from Imagelibrary/rtems
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:
@@ -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>
|
2008-08-28 Till Straumann <strauman@slac.stanford.edu>
|
||||||
|
|
||||||
* vmeUniverse/vmeTsi148.h, vmeUniverse/vmeTsi148.c:
|
* vmeUniverse/vmeTsi148.h, vmeUniverse/vmeTsi148.c:
|
||||||
|
|||||||
@@ -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;
|
return RTEMS_SUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ rtems_device_driver console_open(
|
|||||||
};
|
};
|
||||||
|
|
||||||
assert( minor <= 1 );
|
assert( minor <= 1 );
|
||||||
if ( minor > 2 )
|
if ( minor > 1 )
|
||||||
return RTEMS_INVALID_NUMBER;
|
return RTEMS_INVALID_NUMBER;
|
||||||
|
|
||||||
sc = rtems_termios_open (major, minor, arg, &pollCallbacks );
|
sc = rtems_termios_open (major, minor, arg, &pollCallbacks );
|
||||||
|
|||||||
Reference in New Issue
Block a user