summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/include/bootcard.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-08 13:24:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-08 13:24:27 +0000
commit5ab278ff9e96e4364da2537365aa7bdd98468512 (patch)
treea3df7965d9c97ce73b63c0e4d5bf68092412d2c2 /c/src/lib/libbsp/shared/include/bootcard.h
parent2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-5ab278ff9e96e4364da2537365aa7bdd98468512.tar.bz2
2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* bootcard.c, bspgetworkarea.c, include/bootcard.h: Switch from ssize_t to uintptr_t for bsp_get_work_area() since the work area is larger than a single allocatable object.
Diffstat (limited to 'c/src/lib/libbsp/shared/include/bootcard.h')
-rw-r--r--c/src/lib/libbsp/shared/include/bootcard.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/shared/include/bootcard.h b/c/src/lib/libbsp/shared/include/bootcard.h
index 18c9069f2e..9a6dcfdb93 100644
--- a/c/src/lib/libbsp/shared/include/bootcard.h
+++ b/c/src/lib/libbsp/shared/include/bootcard.h
@@ -54,10 +54,10 @@ void bsp_reset(void);
#define BSP_BOOTCARD_HEAP_SIZE_DEFAULT 0
void bsp_get_work_area(
- void **work_area_start,
- ssize_t *work_area_size,
- void **heap_start,
- ssize_t *heap_size
+ void **work_area_start,
+ uintptr_t *work_area_size,
+ void **heap_start,
+ uintptr_t *heap_size
);
int boot_card( const char *cmdline );