summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/src/ramdisk.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 08:15:17 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 08:15:17 +0000
commit8b961495bbc5cc4efa9a199dd0dc2397ba0c33ca (patch)
treef4c88be7e6dc915e7bb8c29c78df66a554895154 /cpukit/libblock/src/ramdisk.c
parent2004-04-17 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-8b961495bbc5cc4efa9a199dd0dc2397ba0c33ca.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/libblock/src/ramdisk.c')
-rw-r--r--cpukit/libblock/src/ramdisk.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libblock/src/ramdisk.c b/cpukit/libblock/src/ramdisk.c
index b54838c62d..7d3c8987f5 100644
--- a/cpukit/libblock/src/ramdisk.c
+++ b/cpukit/libblock/src/ramdisk.c
@@ -29,7 +29,7 @@ struct ramdisk {
int block_num; /* Number of blocks on this RAM disk */
void *area; /* RAM disk memory area */
rtems_boolean initialized;/* RAM disk is initialized */
- rtems_boolean malloced; /* != 0, if memory allocated by malloc for this
+ rtems_boolean malloced; /* != 0, if memory allocated by malloc for this
RAM disk */
};
@@ -40,7 +40,7 @@ static int nramdisks;
* RAM disk READ request handler. This primitive copies data from RAM
* disk to supplied buffer and invoke the callout function to inform
* upper layer that reading is completed.
- *
+ *
* PARAMETERS:
* req - pointer to the READ block device request info
*
@@ -75,7 +75,7 @@ ramdisk_read(struct ramdisk *rd, blkdev_request *req)
* RAM disk WRITE request handler. This primitive copies data from
* supplied buffer to RAM disk and invoke the callout function to inform
* upper layer that writing is completed.
- *
+ *
* PARAMETERS:
* req - pointer to the WRITE block device request info
*
@@ -159,7 +159,7 @@ ramdisk_ioctl(dev_t dev, int req, void *argp)
}
/* ramdisk_initialize --
- * RAM disk device driver initialization. Run through RAM disk
+ * RAM disk device driver initialization. Run through RAM disk
* configuration information and configure appropriate RAM disks.
*
* PARAMETERS:
@@ -185,7 +185,7 @@ ramdisk_initialize(
if (rc != RTEMS_SUCCESSFUL)
return rc;
- r = ramdisk = calloc(rtems_ramdisk_configuration_size,
+ r = ramdisk = calloc(rtems_ramdisk_configuration_size,
sizeof(struct ramdisk));
for (i = 0; i < rtems_ramdisk_configuration_size; i++, c++, r++)