Lines Matching defs:state
103 u32 state = 0;
123 "=d" (state), "=D" (edi), "=S" (dummy)
126 "c" (state),
144 * speedstep_set_state - set the SpeedStep state
145 * @state: new processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH)
148 static void speedstep_set_state(unsigned int state)
155 if (state > 0x1)
164 pr_debug("trying to set frequency to state %u "
166 state, command, smi_port);
192 : "a" (command), "b" (function), "c" (state),
195 } while ((new_state != state) && (retry <= SMI_TRIES));
201 if (new_state == state)
207 pr_err("change to state %u failed with new_state %u and result %u\n",
208 state, new_state, result);