File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3230,21 +3230,22 @@ static void rtpm_status_str(struct seq_file *s, struct device *dev)
3230
3230
seq_printf (s , "%-25s " , p );
3231
3231
}
3232
3232
3233
- static void mode_status_str (struct seq_file * s , struct device * dev )
3233
+ static void perf_status_str (struct seq_file * s , struct device * dev )
3234
3234
{
3235
3235
struct generic_pm_domain_data * gpd_data ;
3236
3236
3237
3237
gpd_data = to_gpd_data (dev -> power .subsys_data -> domain_data );
3238
3238
3239
- seq_printf (s , "%9s " , gpd_data -> hw_mode ? "HW" : "SW" );
3239
+ seq_printf (s , "%-10u " , gpd_data -> performance_state );
3240
3240
}
3241
3241
3242
- static void perf_status_str (struct seq_file * s , struct device * dev )
3242
+ static void mode_status_str (struct seq_file * s , struct device * dev )
3243
3243
{
3244
3244
struct generic_pm_domain_data * gpd_data ;
3245
3245
3246
3246
gpd_data = to_gpd_data (dev -> power .subsys_data -> domain_data );
3247
- seq_printf (s , "%-10u " , gpd_data -> performance_state );
3247
+
3248
+ seq_printf (s , "%9s" , gpd_data -> hw_mode ? "HW" : "SW" );
3248
3249
}
3249
3250
3250
3251
static int genpd_summary_one (struct seq_file * s ,
You can’t perform that action at this time.
0 commit comments