From: Jan-Benedict G. <jb...@us...> - 2005-07-31 13:16:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv990/include/asm-vax Modified Files: hardirq.h Log Message: - SOFTIRQ_BITS no longer needed in arch-specific header file. - Put #error message into quotes. Index: hardirq.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/hardirq.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- hardirq.h 31 Jul 2005 13:02:36 -0000 1.12 +++ hardirq.h 31 Jul 2005 13:16:35 -0000 1.13 @@ -30,7 +30,6 @@ */ #define PREEMPT_BITS 8 -#define SOFTIRQ_BITS 8 #define HARDIRQ_BITS 15 /* @@ -39,7 +38,7 @@ * on a single CPU: */ #if (1 << HARDIRQ_BITS) < NR_IRQS -# error HARDIRQ_BITS is too low! +# error "HARDIRQ_BITS is too low!" #endif #endif /* _ASM_VAX_HARDIRQ_H */ |