On Feb 9, 2008 2:36 AM, ron minnich <<a href="mailto:rminnich@gmail.com">rminnich@gmail.com</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Interrupts are up and working on the LX on v3! Ethernet, USB, etc. --<br>it's all working.<br><br>We may be close to moving all LX boards to v3. This is a big day.<br><br>patch attached.<br><font color="#888888"><br>ron</font></blockquote>
</div><br>Awesome!<br><br>One thing I think you missed:<br><br><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">Index: arch/x86/archtables.c<br>
===================================================================<br>--- arch/x86/archtables.c    (revision 581)<br>+++ arch/x86/archtables.c    (working copy)<br>@@ -79,8 +79,13 @@<br>     post_code(POST_STAGE2_ARCH_WRITE_TABLES_ENTER);<br>
 <br>     /* This table must be betweeen 0xf0000 & 0x100000 */<br>-//    rom_table_end = write_pirq_routing_table(rom_table_end);<br>-//    rom_table_end = (rom_table_end + 1023) & ~1023;<br>+    /* we need to make a decision: create empty functions <br>
+      * in .h files if the cpp variable is undefined, or #ifdef?<br>+      */<br>+#ifdef CONFIG_PIRQ_TABLES<br>+    rom_table_end = write_pirq_routing_table(rom_table_end);<br>+    rom_table_end = (rom_table_end + 1023) & ~1023;<br>
+#endif</blockquote><div><br>Should be CONFIG_PIRQ_TABLE?<br><br>Also, is there copyright info for the pirq routing table files? We should be preserving that or adding it, it'll never be any easier then right now.<br>
<br>-Corey</div>