Changeset 953b0f33 in mainline for arch/ppc32


Ignore:
Timestamp:
2006-05-01T13:19:14Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0f27b4c
Parents:
cf26ba9
Message:

Add dummy IRQ_COUNT and irq_ipc_bind_arch() to ia64, ppc32 and sparc64 so that they compile again.

Location:
arch/ppc32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/include/interrupt.h

    rcf26ba9 r953b0f33  
    3030#define __ppc32_INTERRUPT_H__
    3131
     32#define IRQ_COUNT       1       /* TODO */
     33
    3234#define IVT_ITEMS   15
    3335#define INT_OFFSET  0
  • arch/ppc32/src/interrupt.c

    rcf26ba9 r953b0f33  
    3333#include <time/clock.h>
    3434#include <print.h>
    35 
     35#include <ipc/sysipc.h>
    3636
    3737void start_decrementer(void)
     
    5656        exc_register(VECTOR_DECREMENTER, "timer", exception_decrementer);
    5757}
     58
     59/* Reregister irq to be IPC-ready */
     60void irq_ipc_bind_arch(__native irq)
     61{
     62        panic("not implemented\n");
     63        /* TODO */
     64}
Note: See TracChangeset for help on using the changeset viewer.