From: Zhang Rui Date: Tue, 16 Aug 2022 13:20:00 +0000 (+0800) Subject: tools/power/x86/intel-speed-select: Support large clos_min/max X-Git-Tag: v6.6.17~5045^2~39^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20f06c9db22bf45de595a2a5855630b075596217;p=platform%2Fkernel%2Flinux-rpi.git tools/power/x86/intel-speed-select: Support large clos_min/max clos_min/max in TPMI interface is frequency in MHz, thus clos_min/max needs to support larger values. No functional changes are expected. Signed-off-by: Zhang Rui [srinivas.pandruvada@linux.intel.com: changelog edits] Signed-off-by: Srinivas Pandruvada --- diff --git a/tools/power/x86/intel-speed-select/isst.h b/tools/power/x86/intel-speed-select/isst.h index b3bf9896..b854f4b 100644 --- a/tools/power/x86/intel-speed-select/isst.h +++ b/tools/power/x86/intel-speed-select/isst.h @@ -92,10 +92,10 @@ struct isst_id { }; struct isst_clos_config { + unsigned int clos_min; + unsigned int clos_max; unsigned char epp; unsigned char clos_prop_prio; - unsigned char clos_min; - unsigned char clos_max; unsigned char clos_desired; };