X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fmn10300%2Fdv-mn103tim.c;h=2cd7ddc934e0b9edd80c9f7416ee2939293e63a8;hb=d6416cdc2356231a0cf55ce7062ede13be5f5597;hp=cd79f918fbf7b56fafad2fee7c9a3cd5393919d5;hpb=2ee563b53258d390d7446e90a67f465d504ae44c;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/mn10300/dv-mn103tim.c b/sim/mn10300/dv-mn103tim.c index cd79f918fb..2cd7ddc934 100644 --- a/sim/mn10300/dv-mn103tim.c +++ b/sim/mn10300/dv-mn103tim.c @@ -1,21 +1,20 @@ /* This file is part of the program GDB, the GNU debugger. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2003, 2007, 2008, 2009 Free Software Foundation, Inc. Contributed by Cygnus Solutions. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + along with this program. If not, see . */ @@ -495,6 +494,7 @@ read_special_timer6_reg (struct hw *me, break; default: + break; } break; } @@ -567,7 +567,7 @@ do_counter_event (struct hw *me, void *data) { struct mn103tim *timers = hw_data(me); - int timer_nr = (int) data; + long timer_nr = (long) data; int next_timer; /* Check if counting is still enabled. */ @@ -608,7 +608,7 @@ do_counter6_event (struct hw *me, void *data) { struct mn103tim *timers = hw_data(me); - int timer_nr = (int) data; + long timer_nr = (long) data; int next_timer; /* Check if counting is still enabled. */ @@ -704,7 +704,7 @@ write_base_reg (struct hw *me, static void write_mode_reg (struct hw *me, struct mn103tim *timers, - int timer_nr, + long timer_nr, const void *source, unsigned nr_bytes) /* for timers 0 to 5 */ @@ -715,7 +715,8 @@ write_mode_reg (struct hw *me, if ( nr_bytes != 1 ) { - hw_abort (me, "bad write size of %d bytes to TM%dMD.", nr_bytes, timer_nr); + hw_abort (me, "bad write size of %d bytes to TM%ldMD.", nr_bytes, + timer_nr); } mode_val = *(unsigned8 *)source; @@ -741,7 +742,7 @@ write_mode_reg (struct hw *me, { if ( timer_nr == 0 || timer_nr == 4 ) { - hw_abort(me, "Timer %d cannot be cascaded.", timer_nr); + hw_abort(me, "Timer %ld cannot be cascaded.", timer_nr); } } else @@ -838,7 +839,7 @@ write_tm6md (struct hw *me, { unsigned8 mode_val0 = 0x00, mode_val1 = 0x00; unsigned32 div_ratio; - int timer_nr = 6; + long timer_nr = 6; unsigned_word offset = address - timers->block[0].base; @@ -950,6 +951,7 @@ write_special_timer6_reg (struct hw *me, break; default: + break; } break; }