On Fri, 22 Feb 2008 22:19:18 -0800 Max Krasnyansky wrote:My bad. Cut & pasted another function and forgot to nuke one asterisk.
Hi Max,
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 438a014..e74db94 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -488,6 +491,26 @@ void free_irq(unsigned int irq, void *dev_id)
}
EXPORT_SYMBOL(free_irq);
+#ifndef CONFIG_AUTO_IRQ_AFFINITY
+/**
+ * Generic version of the affinity autoselector.
+ * Called under desc->lock from setup_irq().
+ * btw Should we rename this to select_irq_affinity() ?
+ */
Please don't begin comment blocks with "/**" unless they are in
kernel-doc format. (See Documentation/kernel-doc-nano-HOWTO.txt
for details of it.)