> +#include "ipath_common.h" > +#include "ipath_debug.h" > +#include "ipath_registers.h" > +#include <linux/interrupt.h> > +#include <asm/io.h> The usual style is to include <linux/> first, then <asm/>, and finally your own local headers. - R.