Remove useless symbol declarations from headers, make symbols local where possible, add some explicit initialization to global variables.

This commit is contained in:
Kees van Reeuwijk
2010-04-22 07:49:40 +00:00
parent 87a9a2ecef
commit d106968d77
12 changed files with 68 additions and 96 deletions

View File

@@ -21,7 +21,8 @@
#include "hw_intr.h"
/* number of lists of IRQ hooks, one list per supported line. */
PUBLIC irq_hook_t* irq_handlers[NR_IRQ_VECTORS] = {0};
PRIVATE irq_hook_t* irq_handlers[NR_IRQ_VECTORS] = {0};
/*===========================================================================*
* put_irq_handler *
*===========================================================================*/