2006-01-08 Joel Sherrill <joel@OARcorp.com>

* libcsupport/src/unixlibc.c, libfs/src/imfs/ioman.c: Change
	rtems_io_register_name to take a const char *.
This commit is contained in:
Joel Sherrill
2006-01-08 17:58:43 +00:00
parent b34446954c
commit 580f024177
3 changed files with 11 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2006-01-08 Joel Sherrill <joel@OARcorp.com>
* libcsupport/src/unixlibc.c, libfs/src/imfs/ioman.c: Change
rtems_io_register_name to take a const char *.
2006-01-08 Joel Sherrill <joel@OARcorp.com>
* sapi/include/rtems/io.h, sapi/src/io.c: Change rtems_io_register_name

View File

@@ -18,9 +18,9 @@
#include <rtems.h>
rtems_status_code rtems_io_register_name(
char *device_name,
rtems_device_major_number major,
rtems_device_minor_number minor
const char *device_name,
rtems_device_major_number major,
rtems_device_minor_number minor
)
{
return 0; /* not supported */

View File

@@ -40,9 +40,9 @@
*/
rtems_status_code rtems_io_register_name(
char *device_name,
rtems_device_major_number major,
rtems_device_minor_number minor
const char *device_name,
rtems_device_major_number major,
rtems_device_minor_number minor
)
{
#if !defined(RTEMS_UNIX)