Rev 1609 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1609 | Rev 1702 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
- | 29 | /** @addtogroup ppc32interrupt ppc32 |
|
- | 30 | * @ingroup interrupt |
|
- | 31 | * @{ |
|
- | 32 | */ |
|
- | 33 | /** @file |
|
- | 34 | */ |
|
- | 35 | ||
29 | #include <interrupt.h> |
36 | #include <interrupt.h> |
30 | #include <arch/interrupt.h> |
37 | #include <arch/interrupt.h> |
31 | #include <arch/types.h> |
38 | #include <arch/types.h> |
32 | #include <arch.h> |
39 | #include <arch.h> |
33 | #include <time/clock.h> |
40 | #include <time/clock.h> |
Line 83... | Line 90... | ||
83 | /* Reregister irq to be IPC-ready */ |
90 | /* Reregister irq to be IPC-ready */ |
84 | void irq_ipc_bind_arch(__native irq) |
91 | void irq_ipc_bind_arch(__native irq) |
85 | { |
92 | { |
86 | int_register(irq, "ipc_int", ipc_int); |
93 | int_register(irq, "ipc_int", ipc_int); |
87 | } |
94 | } |
- | 95 | ||
- | 96 | /** @} |
|
- | 97 | */ |
|
- | 98 |