/*
- * Copyright (c) 2004-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2004-2006 Apple Computer, Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
*/
void pmsCPUSet(uint32_t sel) {
- int nvoltage, nfreq;
- uint32_t oldaack;
+ int nfreq;
struct per_proc_info *pp;
pp = getPerProc(); /* Get our per_proc */
kern_return_t ret;
pmsSetFunc_t pmsDfltFunc[pmsSetFuncMax]; /* List of functions for the external power control to use */
- for(i = 0; i < pmsSetFuncMax; i++) pmsDfltFunc[i] = 0; /* Clear this */
+ for(i = 0; i < pmsSetFuncMax; i++) pmsDfltFunc[i] = NULL; /* Clear this */
ret = pmsBuild((pmsDef *)&pmsDefault, sizeof(pmsDefault), pmsDfltFunc, 0, (pmsQueryFunc_t)0); /* Configure the default stepper */
-pCCfinish:
if(ret != KERN_SUCCESS) { /* Some screw up? */
panic("pmsCPUConf: initial stepper table build failed, ret = %08X\n", ret); /* Squeal */
}
pmsPark(); /* Then park */
kprintf("************ Stepper hardware initialized, cpu %d ******************\n", cpu); /* (BRINGUP) */
-
- return;
}
-uint32_t pmsCPUQuery(void) {
+extern uint32_t hid1get(void);
+uint32_t
+pmsCPUQuery(void)
+{
uint32_t result;
struct per_proc_info *pp;
uint64_t scdata;