Rename dump_nhm_platform_info() and dump_nhm_cst_cfg() to
dump_platform_info() and dump_cst_cfg() because these MSRs' behavior is
consistent when they're available.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Reviewed-by: Len Brown <len.brown@intel.com>
 
 void prewake_cstate_probe(unsigned int family, unsigned int model);
 
-static void dump_nhm_platform_info(void)
+static void dump_platform_info(void)
 {
        unsigned long long msr;
        unsigned int ratio;
                                ratio[i], bclk, ratio[i] * bclk, cores[i]);
 }
 
-static void dump_nhm_cst_cfg(void)
+static void dump_cst_cfg(void)
 {
        unsigned long long msr;
 
        if (!platform->has_nhm_msrs)
                return;
 
-       dump_nhm_platform_info();
+       dump_platform_info();
        dump_turbo_ratio_info(family, model);
-       dump_nhm_cst_cfg();
+       dump_cst_cfg();
 }
 
 static int read_sysfs_int(char *path)