Re: [PATCH] Move functions declarations to header file

2007-06-21 Thread Randy Dunlap
On Thu, 21 Jun 2007 11:54:11 -0300 Glauber de Oliveira Costa wrote: > Some interrupt entry points are currently defined in i8259.c > They probably belong in a header. Right now, their only user is > init_IRQ, justifying their declaration in-file. But when virtualization > comes in, we may be inter

[PATCH] Move functions declarations to header file

2007-06-21 Thread Glauber de Oliveira Costa
Some interrupt entry points are currently defined in i8259.c They probably belong in a header. Right now, their only user is init_IRQ, justifying their declaration in-file. But when virtualization comes in, we may be interested in using that functions in late initializations. Signed-off-by: Glaube