*/
 
 #include <linux/mutex.h>
-#include <linux/module.h>
 #include <linux/cpuidle.h>
 
 #include "cpuidle.h"
        if (cpuidle_curr_governor) {
                list_for_each_entry(dev, &cpuidle_detected_devices, device_list)
                        cpuidle_disable_device(dev);
-               module_put(cpuidle_curr_governor->owner);
        }
 
        cpuidle_curr_governor = gov;
 
        if (gov) {
-               if (!try_module_get(cpuidle_curr_governor->owner))
-                       return -EINVAL;
                list_for_each_entry(dev, &cpuidle_detected_devices, device_list)
                        cpuidle_enable_device(dev);
                cpuidle_install_idle_handler();
 
 #include <linux/kernel.h>
 #include <linux/cpuidle.h>
 #include <linux/pm_qos.h>
-#include <linux/module.h>
 #include <linux/jiffies.h>
 #include <linux/tick.h>
 
        .enable =       ladder_enable_device,
        .select =       ladder_select_state,
        .reflect =      ladder_reflect,
-       .owner =        THIS_MODULE,
 };
 
 /**
 
 #include <linux/tick.h>
 #include <linux/sched.h>
 #include <linux/math64.h>
-#include <linux/module.h>
 
 /*
  * Please note when changing the tuning values:
        .enable =       menu_enable_device,
        .select =       menu_select,
        .reflect =      menu_reflect,
-       .owner =        THIS_MODULE,
 };
 
 /**
 
        int  (*select)          (struct cpuidle_driver *drv,
                                        struct cpuidle_device *dev);
        void (*reflect)         (struct cpuidle_device *dev, int index);
-
-       struct module           *owner;
 };
 
 #ifdef CONFIG_CPU_IDLE