2010-05-22 Ralf Corsépius <ralf.corsepius@rtems.org>

* libblock/include/rtems/nvdisk.h, libblock/src/nvdisk-sram.c:
	Use pointer arithmetic instead of int32_t arithmetic for 16bit
	compatibility.
This commit is contained in:
Ralf Corsepius
2010-05-22 16:51:05 +00:00
parent 2ad5753419
commit f22c1544c5
3 changed files with 22 additions and 16 deletions
+6
View File
@@ -1,3 +1,9 @@
2010-05-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* libblock/include/rtems/nvdisk.h, libblock/src/nvdisk-sram.c:
Use pointer arithmetic instead of int32_t arithmetic for 16bit
compatibility.
2010-05-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* libmisc/shell/fts.c: Cast to uintptr_t instead of long for better
+7 -7
View File
@@ -99,8 +99,8 @@ typedef struct rtems_nvdisk_driver_handlers
* @retval 0 No error.
* @retval EIO The read did not complete.
*/
int (*read) (uint32_t device, uint32_t flags, uint32_t base,
uint32_t offset, void* buffer, uint32_t size);
int (*read) (uint32_t device, uint32_t flags, void* base,
uint32_t offset, void* buffer, size_t size);
/**
* Write data from the buffer to the device. Return an errno
@@ -115,8 +115,8 @@ typedef struct rtems_nvdisk_driver_handlers
* @retval 0 No error.
* @retval EIO The write did not complete or verify.
*/
int (*write) (uint32_t device, uint32_t flags, uint32_t base,
uint32_t offset, const void* buffer, uint32_t size);
int (*write) (uint32_t device, uint32_t flags, void* base,
uint32_t offset, const void* buffer, size_t size);
/**
* Verify data in the buffer to the data in the device. Return an
@@ -131,8 +131,8 @@ typedef struct rtems_nvdisk_driver_handlers
* @retval 0 No error.
* @retval EIO The data did not verify.
*/
int (*verify) (uint32_t device, uint32_t flags, uint32_t base,
uint32_t offset, const void* buffer, uint32_t size);
int (*verify) (uint32_t device, uint32_t flags, void* base,
uint32_t offset, const void* buffer, size_t size);
} rtems_nvdisk_driver_handlers;
@@ -148,7 +148,7 @@ typedef struct rtems_nvdisk_driver_handlers
typedef struct rtems_nvdisk_device_desc
{
uint32_t flags; /**< Private user flags. */
uint32_t base; /**< Base address of the device. */
void* base; /**< Base address of the device. */
uint32_t size; /**< Size of the device. */
const rtems_nvdisk_driver_handlers* nv_ops; /**< Device handlers. */
} rtems_nvdisk_device_desc;
+9 -9
View File
@@ -27,36 +27,36 @@
static int
rtems_nvdisk_sram_read (uint32_t device __attribute__((unused)),
uint32_t flags __attribute__((unused)),
uint32_t base,
void* base,
uint32_t offset,
void* buffer,
uint32_t size)
size_t size)
{
memcpy (buffer, (char*) (base + offset), size);
memcpy (buffer, (base + offset), size);
return 0;
}
static int
rtems_nvdisk_sram_write (uint32_t device __attribute__((unused)),
uint32_t flags __attribute__((unused)),
uint32_t base,
void* base,
uint32_t offset,
const void* buffer,
uint32_t size)
size_t size)
{
memcpy ((char*) (base + offset), buffer, size);
memcpy ((base + offset), buffer, size);
return 0;
}
static int
rtems_nvdisk_sram_verify (uint32_t device __attribute__((unused)),
uint32_t flags __attribute__((unused)),
uint32_t base,
void* base,
uint32_t offset,
const void* buffer,
uint32_t size)
size_t size)
{
return memcmp ((char*) (base + offset), buffer, size) == 0 ? 0 : EIO;
return memcmp ((base + offset), buffer, size) == 0 ? 0 : EIO;
}