sim: bfin: migrate to standard uintXX_t types
authorMike Frysinger <vapier@gentoo.org>
Mon, 6 Dec 2021 07:09:47 +0000 (02:09 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 6 Jan 2022 06:17:38 +0000 (01:17 -0500)
Move off the sim-specific unsignedXX types and to the standard uintXX_t
types that C11 provides.

sim/bfin/dv-bfin_ctimer.c

index b6fbb34f4c3bca26700a5e35fe37da063860d06d..64dc5c5af9ff9ea1bc1ab4802b02139e4ffb7bc4 100644 (file)
@@ -30,7 +30,7 @@ struct bfin_ctimer
 {
   bu32 base;
   struct hw_event *handler;
-  signed64 timeout;
+  int64_t timeout;
 
   /* Order after here is important -- matches hardware MMR layout.  */
   bu32 tcntl, tperiod, tscale, tcount;
@@ -84,7 +84,7 @@ static void
 bfin_ctimer_update_count (struct hw *me, struct bfin_ctimer *ctimer)
 {
   bu32 scale, ticks;
-  signed64 timeout;
+  int64_t timeout;
 
   /* If the timer was enabled w/out autoreload and has expired, then
      there's nothing to calculate here.  */