From: Kenn H. <ke...@us...> - 2001-01-23 23:49:31
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax In directory usw-pr-cvs1:/tmp/cvs-serv29709 Modified Files: psl.h Log Message: Fixed this in 2.2 ages ago... Index: psl.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/psl.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** psl.h 2001/01/17 16:18:52 1.1 --- psl.h 2001/01/23 23:49:48 1.2 *************** *** 61,67 **** #define __psl ({ \ ! struct psl_fields *p; \ __asm__ volatile ("movpsl %0" : "=g" (p) : ); \ ! *p; \ }) --- 61,67 ---- #define __psl ({ \ ! struct psl_fields p; \ __asm__ volatile ("movpsl %0" : "=g" (p) : ); \ ! p; \ }) |