summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/libio.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-05-14 13:16:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-05-15 10:01:42 +0200
commitdf01da67078b4ed4787680d3987f5b40ac93d080 (patch)
treea5a111a82290eb1b79c344459d34b989b341602d /cpukit/libcsupport/include/rtems/libio.h
parentrfs: Fix major and minor number integer types (diff)
downloadrtems-df01da67078b4ed4787680d3987f5b40ac93d080.tar.bz2
Filesystem: Use ioctl_command_t
Diffstat (limited to 'cpukit/libcsupport/include/rtems/libio.h')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index bb6c44fcfa..9268aed2e1 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -832,9 +832,9 @@ typedef ssize_t (*rtems_filesystem_write_t)(
* @see rtems_filesystem_default_ioctl().
*/
typedef int (*rtems_filesystem_ioctl_t)(
- rtems_libio_t *iop,
- uint32_t request,
- void *buffer
+ rtems_libio_t *iop,
+ ioctl_command_t request,
+ void *buffer
);
/**
@@ -1008,9 +1008,9 @@ ssize_t rtems_filesystem_default_write(
* @see rtems_filesystem_ioctl_t.
*/
int rtems_filesystem_default_ioctl(
- rtems_libio_t *iop,
- uint32_t command,
- void *buffer
+ rtems_libio_t *iop,
+ ioctl_command_t request,
+ void *buffer
);
/**
@@ -1225,7 +1225,7 @@ typedef struct {
*/
typedef struct {
rtems_libio_t *iop;
- uint32_t command;
+ ioctl_command_t command;
void *buffer;
int ioctl_return;
} rtems_libio_ioctl_args_t;