[parisc-linux-cvs] linux bame
Paul Bame
bame@puffin.external.hp.com
Thu, 21 Jun 2001 11:19:29 -0600
CVSROOT: /home/cvs/parisc
Module name: linux
Changes by: bame 01/06/21 11:19:29
Modified files:
include/linux : Tag: 1 sched.h
Log message:
New compilers complained that kernel/timer.c:
volatile struct timeval xtime __attribute__ ((aligned (16)));
didn't match the definition here, so I added tha alignment
attribute and now it compiles fine.
-extern struct timeval xtime;
+extern struct timeval xtime __attribute__ ((aligned (16)));