source: rtems/c/src/lib/libcpu/arm/pxa255/irq/irq.h @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 632 bytes
Line 
1/*
2 * Copyright (c) 2010 embedded brains GmbH.
3 *
4 * Interrupt handler Header file for PXA By Yang Xi <hiyangxi@gmail.com>
5 * Copyright (c) 2004 by Jay Monkman <jtm@lopingdog.com>
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 */
11
12#ifndef __IRQ_H__
13#define __IRQ_H__
14
15#ifndef __asm__
16
17#include <rtems.h>
18#include <rtems/irq.h>
19#include <rtems/irq-extension.h>
20
21#include <pxa255.h>
22
23#define BSP_INTERRUPT_VECTOR_MIN 0
24
25#define BSP_INTERRUPT_VECTOR_MAX (PRIMARY_IRQS - 1)
26
27#endif /* __asm__ */
28
29#endif /* __IRQ_H__ */
Note: See TracBrowser for help on using the repository browser.