From: Jan-Benedict G. <jb...@us...> - 2005-04-26 21:52:37
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4396/include/asm-vax Modified Files: cacheflush.h Log Message: - Update headerfile recursion blocker - Long time ago, we settled to start assembler lines at the same indention as the asm keyword itself. Index: cacheflush.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/cacheflush.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- cacheflush.h 25 Apr 2005 22:25:07 -0000 1.7 +++ cacheflush.h 26 Apr 2005 21:52:22 -0000 1.8 @@ -1,5 +1,5 @@ -#ifndef __VAX_CACHEFLUSH_H -#define __VAX_CACHEFLUSH_H +#ifndef _VAX_CACHEFLUSH_H +#define _VAX_CACHEFLUSH_H #include <linux/mm.h> @@ -34,10 +34,10 @@ * an interrupt, and then REI. */ __asm__ ( - " movpsl -(%sp) \n" - " pushab 1f \n" - " rei \n" - "1: \n"); + " movpsl -(%sp) \n" + " pushab 1f \n" + " rei \n" + "1: \n"); } #define copy_to_user_page(vma, page, vaddr, dst, src, len) \ @@ -49,4 +49,4 @@ #define copy_from_user_page(vma, page, vaddr, dst, src, len) \ memcpy(dst, src, len) -#endif /* __VAX_MM_CACHE_H */ +#endif /* _VAX_CACHEFLUSH_H */ |