Update of /cvsroot/linux-mips/linux/arch/mips/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv14591/arch/mips/kernel
Modified Files:
pci.c
Log Message:
Added preliminary power management supuport:
* turn off the clocks to the uarts when not used
* turn off the clocks to the ethernets when not used
* adhoc /proc interface for putting the cpu to sleep and
dynamically scaling the cpu frequency.
* fixed a pci compile problem
Index: pci.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/pci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pci.c 2001/08/23 23:39:51 1.2
--- pci.c 2001/08/28 07:23:54 1.3
***************
*** 173,174 ****
--- 173,179 ----
/* this should not be called */
}
+
+ unsigned int pcibios_assign_all_busses(void)
+ {
+ return 1;
+ }
|