Subversion Repositories HelenOS

Rev

Rev 2089 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2089 Rev 2101
Line 160... Line 160...
160
        } else
160
        } else
161
            printf("INIT IPI for l_apic%d failed\n", ops->cpu_apic_id(i));
161
            printf("INIT IPI for l_apic%d failed\n", ops->cpu_apic_id(i));
162
    }
162
    }
163
}
163
}
164
 
164
 
165
int smp_irq_to_pin(int irq)
165
int smp_irq_to_pin(unsigned int irq)
166
{
166
{
167
    ASSERT(ops != NULL);
167
    ASSERT(ops != NULL);
168
    return ops->irq_to_pin(irq);
168
    return ops->irq_to_pin(irq);
169
}
169
}
170
 
170