forked from Imagelibrary/rtems
2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/src/dosfs/fat_file.c, libmisc/monitor/monitor.h, score/cpu/m68k/rtems/score/cpu.h: Remove stray spaces from unsigned32 to uint32_t conversion.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* libfs/src/dosfs/fat_file.c, libmisc/monitor/monitor.h,
|
||||
score/cpu/m68k/rtems/score/cpu.h: Remove stray spaces from unsigned32
|
||||
to uint32_t conversion.
|
||||
|
||||
2011-07-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* libcsupport/include/rtems/libio_.h: Added
|
||||
|
||||
@@ -687,8 +687,8 @@ fat_file_ioctl(
|
||||
switch (cmd)
|
||||
{
|
||||
case F_CLU_NUM:
|
||||
pos = va_arg(ap, uint32_t );
|
||||
ret = va_arg(ap, uint32_t *);
|
||||
pos = va_arg(ap, uint32_t);
|
||||
ret = va_arg(ap, uint32_t *);
|
||||
|
||||
/* sanity check */
|
||||
if ( pos >= fat_fd->fat_file_size ) {
|
||||
|
||||
@@ -392,7 +392,7 @@ void rtems_monitor_task(rtems_task_argument);
|
||||
void rtems_monitor_server_kill(void);
|
||||
rtems_status_code rtems_monitor_server_request(uint32_t , rtems_monitor_server_request_t *, rtems_monitor_server_response_t *);
|
||||
void rtems_monitor_server_task(rtems_task_argument);
|
||||
void rtems_monitor_server_init(uint32_t );
|
||||
void rtems_monitor_server_init(uint32_t);
|
||||
|
||||
/* command.c */
|
||||
int rtems_monitor_make_argv(char *, int *, char **);
|
||||
@@ -488,9 +488,9 @@ void rtems_monitor_driver_dump(rtems_monitor_driver_t *, bool);
|
||||
rtems_symbol_table_t *rtems_symbol_table_create(void);
|
||||
void rtems_symbol_table_destroy(rtems_symbol_table_t *table);
|
||||
|
||||
rtems_symbol_t *rtems_symbol_create(rtems_symbol_table_t *, const char *, uint32_t );
|
||||
rtems_symbol_t *rtems_symbol_value_lookup(rtems_symbol_table_t *, uint32_t );
|
||||
const rtems_symbol_t *rtems_symbol_value_lookup_exact(rtems_symbol_table_t *, uint32_t );
|
||||
rtems_symbol_t *rtems_symbol_create(rtems_symbol_table_t *, const char *, uint32_t);
|
||||
rtems_symbol_t *rtems_symbol_value_lookup(rtems_symbol_table_t *, uint32_t);
|
||||
const rtems_symbol_t *rtems_symbol_value_lookup_exact(rtems_symbol_table_t *, uint32_t);
|
||||
rtems_symbol_t *rtems_symbol_name_lookup(rtems_symbol_table_t *, const char *);
|
||||
void *rtems_monitor_symbol_next(void *object_info, rtems_monitor_symbol_t *, rtems_id *);
|
||||
void rtems_monitor_symbol_canonical(rtems_monitor_symbol_t *, rtems_symbol_t *);
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
* This include file contains information pertaining to the Motorola
|
||||
* m68xxx processor family.
|
||||
*
|
||||
* COPYRIGHT (c) 1989-2006.
|
||||
* COPYRIGHT (c) 1989-2011.
|
||||
* On-Line Applications Research Corporation (OAR).
|
||||
*
|
||||
* The license and distribution terms for this file may be
|
||||
@@ -457,7 +457,7 @@ uint32_t _CPU_ISR_Get_level( void );
|
||||
uint32_t _stack; \
|
||||
\
|
||||
(_the_context)->sr = 0x3000 | ((_isr) << 8); \
|
||||
_stack = (uint32_t )(_stack_base) + (_size) - 4; \
|
||||
_stack = (uint32_t)(_stack_base) + (_size) - 4; \
|
||||
(_the_context)->a7_msp = (void *)_stack; \
|
||||
*(void **)_stack = (void *)(_entry_point); \
|
||||
} while ( 0 )
|
||||
|
||||
Reference in New Issue
Block a user