static int __init pluto_wifi_prepower(void)
{
	if (!machine_is_tegra_pluto())
		return 0;

	pluto_wifi_power(1);

	return 0;
}
Exemplo n.º 2
0
static int __init pluto_skin_init(void)
{
	if (machine_is_tegra_pluto()) {
		balanced_throttle_register(&skin_throttle, "skin-balanced");
		tegra_skin_therm_est_device.dev.platform_data = &skin_data;
		platform_device_register(&tegra_skin_therm_est_device);
	}

	return 0;
}
Exemplo n.º 3
0
static int __init pluto_throttle_init(void)
{
	if (machine_is_tegra_pluto())
		balanced_throttle_register(&tj_throttle, "tegra-balanced");
	return 0;
}