Lines Matching refs:platform_profile_handler

247 static struct platform_profile_handler platform_profile_handler;  variable
1175 static int platform_profile_omen_get(struct platform_profile_handler *pprof, in platform_profile_omen_get()
1204 static int platform_profile_omen_set(struct platform_profile_handler *pprof, in platform_profile_omen_set()
1255 static int hp_wmi_platform_profile_get(struct platform_profile_handler *pprof, in hp_wmi_platform_profile_get()
1284 static int hp_wmi_platform_profile_set(struct platform_profile_handler *pprof, in hp_wmi_platform_profile_set()
1325 static int platform_profile_victus_get(struct platform_profile_handler *pprof, in platform_profile_victus_get()
1351 static int platform_profile_victus_set(struct platform_profile_handler *pprof, in platform_profile_victus_set()
1395 platform_profile_handler.profile_get = platform_profile_omen_get; in thermal_profile_setup()
1396 platform_profile_handler.profile_set = platform_profile_omen_set; in thermal_profile_setup()
1398 set_bit(PLATFORM_PROFILE_COOL, platform_profile_handler.choices); in thermal_profile_setup()
1412 platform_profile_handler.profile_get = platform_profile_victus_get; in thermal_profile_setup()
1413 platform_profile_handler.profile_set = platform_profile_victus_set; in thermal_profile_setup()
1415 set_bit(PLATFORM_PROFILE_QUIET, platform_profile_handler.choices); in thermal_profile_setup()
1430 platform_profile_handler.profile_get = hp_wmi_platform_profile_get; in thermal_profile_setup()
1431 platform_profile_handler.profile_set = hp_wmi_platform_profile_set; in thermal_profile_setup()
1433 set_bit(PLATFORM_PROFILE_QUIET, platform_profile_handler.choices); in thermal_profile_setup()
1434 set_bit(PLATFORM_PROFILE_COOL, platform_profile_handler.choices); in thermal_profile_setup()
1437 set_bit(PLATFORM_PROFILE_BALANCED, platform_profile_handler.choices); in thermal_profile_setup()
1438 set_bit(PLATFORM_PROFILE_PERFORMANCE, platform_profile_handler.choices); in thermal_profile_setup()
1440 err = platform_profile_register(&platform_profile_handler); in thermal_profile_setup()