Commit db503238 authored by Jesse Barnes's avatar Jesse Barnes Committed by David Mosberger

[PATCH] ia64: fix cast in irq_lsapic.c

This patch just updates the cast in irq_lsapic.c to use the cpumask_t
type for the noop cast assignment to smp_affinity.
parent 3177b564
...@@ -34,5 +34,5 @@ struct hw_interrupt_type irq_type_ia64_lsapic = { ...@@ -34,5 +34,5 @@ struct hw_interrupt_type irq_type_ia64_lsapic = {
.disable = lsapic_noop, .disable = lsapic_noop,
.ack = lsapic_noop, .ack = lsapic_noop,
.end = lsapic_noop, .end = lsapic_noop,
.set_affinity = (void (*)(unsigned int, unsigned long)) lsapic_noop .set_affinity = (void (*)(unsigned int, cpumask_t)) lsapic_noop
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment