[rtems commit] lm32/include/rtems/score/cpuimpl.h: Address unused parameter warning

Joel Sherrill joel at rtems.org
Tue Aug 22 16:50:54 UTC 2023


Module:    rtems
Branch:    master
Commit:    592e53b0b86754c31b7e2c1b53d9e9e8fba68d60
Changeset: http://git.rtems.org/rtems/commit/?id=592e53b0b86754c31b7e2c1b53d9e9e8fba68d60

Author:    Joel Sherrill <joel at rtems.org>
Date:      Mon Aug 21 11:40:20 2023 -0500

lm32/include/rtems/score/cpuimpl.h: Address unused parameter warning

---

 cpukit/score/cpu/lm32/include/rtems/score/cpuimpl.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/cpukit/score/cpu/lm32/include/rtems/score/cpuimpl.h b/cpukit/score/cpu/lm32/include/rtems/score/cpuimpl.h
index 679ef452f4..870640864c 100644
--- a/cpukit/score/cpu/lm32/include/rtems/score/cpuimpl.h
+++ b/cpukit/score/cpu/lm32/include/rtems/score/cpuimpl.h
@@ -40,11 +40,15 @@ RTEMS_NO_RETURN void _CPU_Fatal_halt( uint32_t source, CPU_Uint32ptr error );
 
 static inline void _CPU_Context_volatile_clobber( uintptr_t pattern )
 {
+  (void) pattern;
+
   /* TODO */
 }
 
 static inline void _CPU_Context_validate( uintptr_t pattern )
 {
+  (void) pattern;
+
   while (1) {
     /* TODO */
   }



More information about the vc mailing list