* vmeUniverse/vmeUniverse.c: Changed types to silence

compiler warnings.
This commit is contained in:
Till Straumann
2007-05-11 00:19:20 +00:00
parent dfc6f3dc11
commit 08f9722552
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2007-05-10 Till Straumann <strauman@slac.stanford.edu>
* vmeUniverse/vmeUniverse.c: Changed types to silence
compiler warnings.
2007-05-09 Joel Sherrill <joel.sherrill@OARcorp.com> 2007-05-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* bootcard.c: Move __fini call to inside executive for * bootcard.c: Move __fini call to inside executive for

View File

@@ -125,7 +125,7 @@
/* PCI_MEM_BASE is a possible offset between CPU- and PCI addresses. /* PCI_MEM_BASE is a possible offset between CPU- and PCI addresses.
* Should be defined by the BSP. * Should be defined by the BSP.
*/ */
typedef uint32_t pci_ulong; typedef unsigned int pci_ulong;
#ifndef BSP_PCI2LOCAL_ADDR #ifndef BSP_PCI2LOCAL_ADDR
#ifndef PCI_MEM_BASE #ifndef PCI_MEM_BASE
@@ -2371,7 +2371,7 @@ rtems_id q = 0;
int installed = 0; int installed = 0;
int i, err = 0; int i, err = 0;
int doDisable = 0; int doDisable = 0;
size_t size; uint32_t size;
unsigned long msg; unsigned long msg;
char * irqfmt = "VME IRQ @vector %3i %s"; char * irqfmt = "VME IRQ @vector %3i %s";
char * iackfmt = "VME IACK %s"; char * iackfmt = "VME IACK %s";