Subversion Repositories HelenOS

Rev

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

Rev 2097 Rev 2101
Line 168... Line 168...
168
        } else
168
        } else
169
            printf("INIT IPI for l_apic%d failed\n", ops->cpu_apic_id(i));
169
            printf("INIT IPI for l_apic%d failed\n", ops->cpu_apic_id(i));
170
    }
170
    }
171
}
171
}
172
 
172
 
173
int smp_irq_to_pin(int irq)
173
int smp_irq_to_pin(unsigned int irq)
174
{
174
{
175
    ASSERT(ops != NULL);
175
    ASSERT(ops != NULL);
176
    return ops->irq_to_pin(irq);
176
    return ops->irq_to_pin(irq);
177
}
177
}
178
 
178