Changeset 6fb30a1 in mainline


Ignore:
Timestamp:
2006-10-18T09:55:18Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
494a54a
Parents:
7688b5d
Message:

remove orphaned functions

Location:
kernel/arch
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/interrupt.c

    r7688b5d r6fb30a1  
    173173}
    174174
    175 
    176 /* Reregister irq to be IPC-ready */
    177 void irq_ipc_bind_arch(unative_t irq)
    178 {
    179         if (irq == IRQ_CLK)
    180                 return;
    181         exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
    182         trap_virtual_enable_irqs(1 << irq);
    183 }
    184 
    185175/** @}
    186176 */
  • kernel/arch/ia32/src/interrupt.c

    r7688b5d r6fb30a1  
    196196}
    197197
    198 
    199 /* Reregister irq to be IPC-ready */
    200 void irq_ipc_bind_arch(unative_t irq)
    201 {
    202         if (irq == IRQ_CLK)
    203                 return;
    204         exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
    205         trap_virtual_enable_irqs(1 << irq);
    206 }
    207 
    208198/** @}
    209199 */
    210 
  • kernel/arch/ia64/src/interrupt.c

    r7688b5d r6fb30a1  
    260260}
    261261
    262 /* Reregister irq to be IPC-ready */
    263 void irq_ipc_bind_arch(unative_t irq)
    264 {
    265         if(irq == IRQ_KBD) {
    266                 kbd_uspace = 1;
    267                 return;
    268         }
    269         return;
    270         panic("not implemented\n");
    271         /* TODO */
    272 }
    273 
    274262/** @}
    275263 */
  • kernel/arch/xen32/src/interrupt.c

    r7688b5d r6fb30a1  
    195195}
    196196
    197 
    198 /* Reregister irq to be IPC-ready */
    199 void irq_ipc_bind_arch(unative_t irq)
    200 {
    201         if (irq == IRQ_CLK)
    202                 return;
    203         exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
    204         trap_virtual_enable_irqs(1 << irq);
    205 }
    206 
    207197/** @}
    208198 */
Note: See TracChangeset for help on using the changeset viewer.