[rtems commit] Clock Driver Shell - Correct PIC IRQ Prototype.

Joel Sherrill joel at rtems.org
Thu Apr 19 18:20:35 UTC 2012


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

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Thu Apr 19 13:11:18 2012 -0500

Clock Driver Shell - Correct PIC IRQ Prototype.

---

 c/src/lib/libbsp/shared/clockdrv_shell.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/c/src/lib/libbsp/shared/clockdrv_shell.h b/c/src/lib/libbsp/shared/clockdrv_shell.h
index 72e9c79..35b5f8d 100644
--- a/c/src/lib/libbsp/shared/clockdrv_shell.h
+++ b/c/src/lib/libbsp/shared/clockdrv_shell.h
@@ -57,8 +57,8 @@ void Clock_exit( void );
  *  Return values:      NONE
  */
 #ifdef BSP_FEATURE_IRQ_EXTENSION
-rtems_isr Clock_isr(void *arg);
-rtems_isr Clock_isr(void *arg)
+void Clock_isr(rtems_irq_hdl_param arg);
+void Clock_isr(rtems_irq_hdl_param arg)
 {
 #else 
 rtems_isr Clock_isr(rtems_vector_number vector);




More information about the vc mailing list