summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-10-10 07:11:26 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-10-10 07:11:26 +0000
commit48943dc1958d8938a5e82c9a175d4e478672f104 (patch)
tree95a1a753d6cdb3ae99e55d81016aabb6570510df /cpukit/libfs
parent2011-10-10 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-48943dc1958d8938a5e82c9a175d4e478672f104.tar.bz2
2011-10-10 Ralf Corsépius <ralf.corsepius@rtems.org>
* libfs/src/devfs/devfs_mknod.c: Remove const cast. * libfs/src/imfs/ioman.c: Remove const cast. * libfs/src/devfs/devfs.h: Make device_name a const char*. * sapi/include/rtems/io.h: Make device_name a const char*.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/devfs/devfs.h2
-rw-r--r--cpukit/libfs/src/devfs/devfs_mknod.c2
-rw-r--r--cpukit/libfs/src/imfs/ioman.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libfs/src/devfs/devfs.h b/cpukit/libfs/src/devfs/devfs.h
index eafa069cb8..6e4f2478c7 100644
--- a/cpukit/libfs/src/devfs/devfs.h
+++ b/cpukit/libfs/src/devfs/devfs.h
@@ -21,7 +21,7 @@ extern "C" {
typedef struct
{
/** This member points to device name which is a null-terminated string */
- char *device_name;
+ const char *device_name;
/** This member is the name length of a device */
uint32_t device_name_length;
/** major number of a device */
diff --git a/cpukit/libfs/src/devfs/devfs_mknod.c b/cpukit/libfs/src/devfs/devfs_mknod.c
index d8e5a30d5f..4a8b8b3523 100644
--- a/cpukit/libfs/src/devfs/devfs_mknod.c
+++ b/cpukit/libfs/src/devfs/devfs_mknod.c
@@ -69,7 +69,7 @@ int devFS_mknod(
rtems_set_errno_and_return_minus_one( ENOMEM );
_ISR_Disable(level);
- device_name_table[slot].device_name = (char *)path;
+ device_name_table[slot].device_name = path;
device_name_table[slot].device_name_length = strlen(path);
device_name_table[slot].major = major;
device_name_table[slot].minor = minor;
diff --git a/cpukit/libfs/src/imfs/ioman.c b/cpukit/libfs/src/imfs/ioman.c
index fa9918b266..0dce7e7239 100644
--- a/cpukit/libfs/src/imfs/ioman.c
+++ b/cpukit/libfs/src/imfs/ioman.c
@@ -82,7 +82,7 @@ rtems_status_code rtems_io_lookup_name(
return RTEMS_UNSATISFIED;
}
- device_info->device_name = (char *) name;
+ device_info->device_name = name;
device_info->device_name_length = strlen( name );
device_info->major = the_jnode->info.device.major;
device_info->minor = the_jnode->info.device.minor;