source: rtems/c/src/lib/libbsp/powerpc/shared/clock/p_clock.c @ e79a1947

4.104.114.84.95
Last change on this file since e79a1947 was f05b2ac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 16:01:48

Remove duplicate white lines.

  • Property mode set to 100644
File size: 881 bytes
Line 
1/*
2 *  Clock Tick interrupt conexion code.
3 *
4 *  COPYRIGHT (c) 1989-1997.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may in
8 *  the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  Modified to support the MPC750.
12 *  Modifications Copyright (c) 1999 Eric Valette valette@crf.canon.fr
13 *
14 *  $Id$
15 */
16
17#include <bsp.h>
18#include <bsp/irq.h>
19#include <libcpu/c_clock.h>
20
21static rtems_irq_connect_data clockIrqData = {BSP_DECREMENTER,
22                                              clockIsr,
23                                              (rtems_irq_enable)clockOn,
24                                              (rtems_irq_disable)clockOff,
25                                              (rtems_irq_is_enabled) clockIsOn};
26
27int BSP_disconnect_clock_handler (void)
28{
29  return BSP_remove_rtems_irq_handler (&clockIrqData);
30}
31
32int BSP_connect_clock_handler (void)
33{
34  return BSP_install_rtems_irq_handler (&clockIrqData);
35}
Note: See TracBrowser for help on using the repository browser.