From: Paul M. <le...@us...> - 2002-06-14 14:16:23
|
Update of /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4181/osprey In directory usw-pr-cvs1:/tmp/cvs-serv3865 Modified Files: setup.c Log Message: Ack. Make sure we use reset functions that actually exist. Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4181/osprey/setup.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- setup.c 14 Jun 2002 14:12:19 -0000 1.3 +++ setup.c 14 Jun 2002 14:16:21 -0000 1.4 @@ -43,9 +43,9 @@ conswitchp = &dummy_con; #endif - _machine_restart = nec_vr41xx_restart; - _machine_halt = nec_vr41xx_halt; - _machine_power_off = nec_vr41xx_power_off; + _machine_restart = vr41xx_restart; + _machine_halt = vr41xx_halt; + _machine_power_off = vr41xx_power_off; /* setup resource limit */ ioport_resource.end = 0xffffffff; |