From: James S. <jsi...@us...> - 2001-11-27 17:37:57
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv6727 Modified Files: setup.c Log Message: Needed a const for mips_io_base to compile for gcc 3+ Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/setup.c,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- setup.c 2001/11/26 18:48:14 1.32 +++ setup.c 2001/11/27 17:37:52 1.33 @@ -106,7 +106,7 @@ * mips_io_port_base is the begin of the address space to which x86 style * I/O ports are mapped. */ -unsigned long mips_io_port_base; EXPORT_SYMBOL(mips_io_port_base); +const unsigned long mips_io_port_base; EXPORT_SYMBOL(mips_io_port_base); /* |