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:
Joel Sherrill
2011-07-21 13:18:30 +00:00
parent a2900a8b4b
commit 186fee26ef
4 changed files with 14 additions and 8 deletions

View File

@@ -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> 2011-07-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libcsupport/include/rtems/libio_.h: Added * libcsupport/include/rtems/libio_.h: Added

View File

@@ -687,8 +687,8 @@ fat_file_ioctl(
switch (cmd) switch (cmd)
{ {
case F_CLU_NUM: case F_CLU_NUM:
pos = va_arg(ap, uint32_t ); pos = va_arg(ap, uint32_t);
ret = va_arg(ap, uint32_t *); ret = va_arg(ap, uint32_t *);
/* sanity check */ /* sanity check */
if ( pos >= fat_fd->fat_file_size ) { if ( pos >= fat_fd->fat_file_size ) {

View File

@@ -392,7 +392,7 @@ void rtems_monitor_task(rtems_task_argument);
void rtems_monitor_server_kill(void); 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 *); 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_task(rtems_task_argument);
void rtems_monitor_server_init(uint32_t ); void rtems_monitor_server_init(uint32_t);
/* command.c */ /* command.c */
int rtems_monitor_make_argv(char *, int *, char **); 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); rtems_symbol_table_t *rtems_symbol_table_create(void);
void rtems_symbol_table_destroy(rtems_symbol_table_t *table); 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_create(rtems_symbol_table_t *, const char *, uint32_t);
rtems_symbol_t *rtems_symbol_value_lookup(rtems_symbol_table_t *, 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 ); 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 *); 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_next(void *object_info, rtems_monitor_symbol_t *, rtems_id *);
void rtems_monitor_symbol_canonical(rtems_monitor_symbol_t *, rtems_symbol_t *); void rtems_monitor_symbol_canonical(rtems_monitor_symbol_t *, rtems_symbol_t *);

View File

@@ -6,7 +6,7 @@
* This include file contains information pertaining to the Motorola * This include file contains information pertaining to the Motorola
* m68xxx processor family. * m68xxx processor family.
* *
* COPYRIGHT (c) 1989-2006. * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -457,7 +457,7 @@ uint32_t _CPU_ISR_Get_level( void );
uint32_t _stack; \ uint32_t _stack; \
\ \
(_the_context)->sr = 0x3000 | ((_isr) << 8); \ (_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; \ (_the_context)->a7_msp = (void *)_stack; \
*(void **)_stack = (void *)(_entry_point); \ *(void **)_stack = (void *)(_entry_point); \
} while ( 0 ) } while ( 0 )