2010-08-23 Joel Sherrill <joel.sherrilL@OARcorp.com>

* network/network.c: Fix warning.
This commit is contained in:
Joel Sherrill
2010-08-23 15:43:55 +00:00
parent c7eb1d450e
commit 33910b8401
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2010-08-23 Joel Sherrill <joel.sherrilL@OARcorp.com>
* network/network.c: Fix warning.
2010-08-03 Joel Sherrill <joel.sherrilL@OARcorp.com>
* console/console.c: Add BSP_poll_char.

View File

@@ -125,10 +125,11 @@ mcf5235_fec_tx_interrupt_handler( rtems_vector_number v )
* Allocate buffer descriptors from (non-cached) on-chip static RAM
* Ensure 128-bit (16-byte) alignment
*/
extern char __SRAMBASE[];
static mcf5235BufferDescriptor_t *
mcf5235_bd_allocate(unsigned int count)
{
extern char __SRAMBASE[];
static mcf5235BufferDescriptor_t *bdp = (mcf5235BufferDescriptor_t *)__SRAMBASE;
mcf5235BufferDescriptor_t *p = bdp;