2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/dosfs/fat_file.c: Remove bsp.h.
	fat_file_write(.. const char*buf ..).
	* src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..).
This commit is contained in:
Joel Sherrill
2002-03-28 13:52:49 +00:00
parent b7d8cb7d69
commit 9fff6bfac6
9 changed files with 27 additions and 12 deletions

View File

@@ -1,3 +1,9 @@
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/fat_file.c: Remove bsp.h.
fat_file_write(.. const char*buf ..).
* src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..).
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -10,7 +10,6 @@
*
*/
#include <bsp.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
@@ -355,7 +354,7 @@ fat_file_write(
fat_file_fd_t *fat_fd,
unsigned32 start,
unsigned32 count,
char *buf
const char *buf
)
{
int rc = 0;
@@ -363,7 +362,7 @@ fat_file_write(
fat_fs_info_t *fs_info = mt_entry->fs_info;
unsigned32 cmpltd = 0;
unsigned32 cur_cln = 0;
unsigned32 save_cln;
unsigned32 save_cln = 0; /* FIXME: This might be incorrect, cf. below */
unsigned32 cl_start = 0;
unsigned32 ofs = 0;
unsigned32 save_ofs;

View File

@@ -156,7 +156,7 @@ fat_file_write(rtems_filesystem_mount_table_entry_t *mt_entry,
fat_file_fd_t *fat_fd,
unsigned32 start,
unsigned32 count,
char *buf);
const char *buf);
int
fat_file_extend(rtems_filesystem_mount_table_entry_t *mt_entry,

View File

@@ -1,3 +1,9 @@
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/fat_file.c: Remove bsp.h.
fat_file_write(.. const char*buf ..).
* src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..).
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -10,7 +10,6 @@
*
*/
#include <bsp.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
@@ -355,7 +354,7 @@ fat_file_write(
fat_file_fd_t *fat_fd,
unsigned32 start,
unsigned32 count,
char *buf
const char *buf
)
{
int rc = 0;
@@ -363,7 +362,7 @@ fat_file_write(
fat_fs_info_t *fs_info = mt_entry->fs_info;
unsigned32 cmpltd = 0;
unsigned32 cur_cln = 0;
unsigned32 save_cln;
unsigned32 save_cln = 0; /* FIXME: This might be incorrect, cf. below */
unsigned32 cl_start = 0;
unsigned32 ofs = 0;
unsigned32 save_ofs;

View File

@@ -156,7 +156,7 @@ fat_file_write(rtems_filesystem_mount_table_entry_t *mt_entry,
fat_file_fd_t *fat_fd,
unsigned32 start,
unsigned32 count,
char *buf);
const char *buf);
int
fat_file_extend(rtems_filesystem_mount_table_entry_t *mt_entry,

View File

@@ -1,3 +1,9 @@
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/dosfs/fat_file.c: Remove bsp.h.
fat_file_write(.. const char*buf ..).
* src/dosfs/fat_file.h: fat_file_write(.. const char*buf ..).
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -10,7 +10,6 @@
*
*/
#include <bsp.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
@@ -355,7 +354,7 @@ fat_file_write(
fat_file_fd_t *fat_fd,
unsigned32 start,
unsigned32 count,
char *buf
const char *buf
)
{
int rc = 0;
@@ -363,7 +362,7 @@ fat_file_write(
fat_fs_info_t *fs_info = mt_entry->fs_info;
unsigned32 cmpltd = 0;
unsigned32 cur_cln = 0;
unsigned32 save_cln;
unsigned32 save_cln = 0; /* FIXME: This might be incorrect, cf. below */
unsigned32 cl_start = 0;
unsigned32 ofs = 0;
unsigned32 save_ofs;

View File

@@ -156,7 +156,7 @@ fat_file_write(rtems_filesystem_mount_table_entry_t *mt_entry,
fat_file_fd_t *fat_fd,
unsigned32 start,
unsigned32 count,
char *buf);
const char *buf);
int
fat_file_extend(rtems_filesystem_mount_table_entry_t *mt_entry,