On 10/07/2014 02:41 PM, Lina Iyer wrote:

+
+static struct platform_device qcom_cpuidle_device = {
+       .name              = "qcom_cpuidle",
+       .id                = -1,
+       .dev.platform_data = qcom_cpu_pm_enter_sleep,
+};
+

Same comment as last time, doesn't need to be static.

+static int __init qcom_pm_device_init(void)
+{
+       platform_device_register(&qcom_cpuidle_device);
+

This is wrong. We're going to register a platform device whenever this file is included in a kernel. This is then going to try and probe the qcom_cpuidle device which is going to fail and print an error message if we're not running on a qcom device. This is one reason why I've been arguing to get rid of this file and just put it inside the spm driver. That way we don't ever add the cpuidle device and:

 a) We know the SPM hardware is configured and ready to be used
b) We don't get this annoying warning and have some weird device in sysfs on non-qcom devices


--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to