Searched refs:prev_value (Results  1 – 4 of 4) sorted by relevance
| /Linux-v6.6/include/trace/events/ | 
| D | power.h | 430 	TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),432 	TP_ARGS(action, prev_value, curr_value),
 436 		__field( int,                    prev_value     )
 442 		__entry->prev_value = prev_value;
 451 		  __entry->prev_value, __entry->curr_value)
 456 	TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),
 458 	TP_ARGS(action, prev_value, curr_value)
 463 	TP_PROTO(enum pm_qos_req_action action, int prev_value, int curr_value),
 465 	TP_ARGS(action, prev_value, curr_value),
 472 		  __entry->prev_value, __entry->curr_value)
 
 | 
| /Linux-v6.6/kernel/power/ | 
| D | qos.c | 101 	int prev_value, curr_value, new_value;  in pm_qos_update_target()  local106 	prev_value = pm_qos_get_value(c);  in pm_qos_update_target()
 137 	trace_pm_qos_update_target(action, prev_value, curr_value);  in pm_qos_update_target()
 139 	if (prev_value == curr_value)  in pm_qos_update_target()
 179 	s32 prev_value, curr_value;  in pm_qos_update_flags()  local
 183 	prev_value = list_empty(&pqf->list) ? 0 : pqf->effective_flags;  in pm_qos_update_flags()
 207 	trace_pm_qos_update_flags(action, prev_value, curr_value);  in pm_qos_update_flags()
 209 	return prev_value != curr_value;  in pm_qos_update_flags()
 
 | 
| /Linux-v6.6/Documentation/trace/ | 
| D | events-power.rst | 78   pm_qos_update_target               "action=%s prev_value=%d curr_value=%d"79   pm_qos_update_flags                "action=%s prev_value=0x%x curr_value=0x%x"
 
 | 
| /Linux-v6.6/drivers/media/platform/renesas/rcar-vin/ | 
| D | rcar-csi2.c | 1468 	const struct rcsi2_mbps_reg *prev_value = NULL;  in rcsi2_phtw_write_mbps()  local1473 		prev_value = value;  in rcsi2_phtw_write_mbps()
 1476 	if (prev_value &&  in rcsi2_phtw_write_mbps()
 1477 	    ((mbps - prev_value->mbps) <= (value->mbps - mbps)))  in rcsi2_phtw_write_mbps()
 1478 		value = prev_value;  in rcsi2_phtw_write_mbps()
 
 |