2007-08-28 Joel Sherrill <joel.sherrill@OARcorp.com>

* ChangeLog, sapi/src/io.c: Revert change accidentally committed to
	io.c.
This commit is contained in:
Joel Sherrill
2007-08-28 14:05:20 +00:00
parent 4d11115798
commit 81cd377d99
2 changed files with 11 additions and 7 deletions

View File

@@ -1,7 +1,12 @@
2007-08-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* ChangeLog, sapi/src/io.c: Revert change accidentally committed to
io.c.
2007-08-28 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1256/networking
* ftpd/ftpd.c, sapi/src/io.c: Fix unaligned access.
* ftpd/ftpd.c: Fix unaligned access.
2007-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>

View File

@@ -136,16 +136,15 @@ rtems_status_code rtems_io_register_driver(
if ( major == 0 )
{
bool found = FALSE;
for ( major = _IO_Number_of_drivers - 1 ; major ; major-- )
if ( _IO_Driver_address_table[major].initialization_entry == 0 &&
_IO_Driver_address_table[major].open_entry == 0 ) {
found = FALSE;
_IO_Driver_address_table[major].open_entry == 0 )
break;
}
if ( !found )
return RTEMS_TOO_MANY;
if (( major == 0 ) &&
( _IO_Driver_address_table[major].initialization_entry == 0 &&
_IO_Driver_address_table[major].open_entry == 0 ))
return RTEMS_TOO_MANY;
}
if ( _IO_Driver_address_table[major].initialization_entry == 0 &&