This patch removes the uneeded debug log because this log is used
for only CPU resource. If there is error, pass_get_hotplug() function
will print the error message.
Change-Id: I3109398a2a6ffe33f348838200082cd0a26a6321
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
/* Get the instance of PASS hotplulg */
policy->hotplug = pass_get_hotplug(policy, policy->gov_type);
- if (!policy->hotplug) {
- _E("cannot get the instance of PASS hotplug");
- } else {
+ if (policy->hotplug) {
policy->hotplug->sequence = calloc(policy->freq.num_nr_cpus,
sizeof(int));
for (i = 0; i < policy->freq.num_nr_cpus; i++)