[CPUFREQ] re-add call to cpufreq_driver->resume()

(if anyone has a brown spare paper bag, feel free to send it to me:)

The call to cpufreq_driver->resume() got lost in 2.6.6. Re-add it at the
proper place.

Signed-off-by: Dominik Brodowski <linux@brodo.de>
---

 drivers/cpufreq/cpufreq.c |    7 +++++++
 1 files changed, 7 insertions(+)

Index: 2.6.10/drivers/cpufreq/cpufreq.c
===================================================================
--- 2.6.10.orig/drivers/cpufreq/cpufreq.c	2004-12-25 09:59:48.000000000 +0100
+++ 2.6.10/drivers/cpufreq/cpufreq.c	2004-12-25 17:42:22.417410548 +0100
@@ -893,6 +893,13 @@
 		return 0;
 	}
 
+	if (cpufreq_driver->resume) {
+		ret = cpufreq_driver->resume(cpu_policy);
+		printk(KERN_ERR "cpufreq: resume failed in ->resume step on CPU %u\n", cpu_policy->cpu);
+		cpufreq_cpu_put(cpu_policy);
+		return (ret);
+	}
+
 	if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
 		unsigned int cur_freq = 0;