summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/mips/include/rtems/score/cpu.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-08 09:41:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-09 06:57:10 +0200
commit270200e972e6c2a5733a12ee70fcc3b7e2940c6c (patch)
tree284b6a902cc2165c94b6bb78e45f7760d1ed712c /cpukit/score/cpu/mips/include/rtems/score/cpu.h
parentlibcrypt: There is no need to clear message digest (diff)
downloadrtems-270200e972e6c2a5733a12ee70fcc3b7e2940c6c.tar.bz2
score: Remove _CPU_Counter_difference()
All CPU ports used the same _CPU_Counter_difference() implementation. Remove this CPU port interface and mandate a monotonically increasing CPU counter. Close #3456.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/mips/include/rtems/score/cpu.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpukit/score/cpu/mips/include/rtems/score/cpu.h b/cpukit/score/cpu/mips/include/rtems/score/cpu.h
index fdb7ee4d73..4dbb053584 100644
--- a/cpukit/score/cpu/mips/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/mips/include/rtems/score/cpu.h
@@ -835,14 +835,6 @@ uint32_t _CPU_Counter_frequency( void );
CPU_Counter_ticks _CPU_Counter_read( void );
-static inline CPU_Counter_ticks _CPU_Counter_difference(
- CPU_Counter_ticks second,
- CPU_Counter_ticks first
-)
-{
- return second - first;
-}
-
/** Type that can store a 32-bit integer or a pointer. */
typedef uintptr_t CPU_Uint32ptr;