*                             highest_lpstate_idx
  * @last_sampled_time:         Time from boot in ms when global pstates were
  *                             last set
- * @last_lpstate_idx,          Last set value of local pstate and global
- * last_gpstate_idx            pstate in terms of cpufreq table index
+ * @last_lpstate_idx:          Last set value of local pstate and global
+ * @last_gpstate_idx:          pstate in terms of cpufreq table index
  * @timer:                     Is used for ramping down if cpu goes idle for
  *                             a long time with global pstate held high
  * @gpstate_lock:              A spinlock to maintain synchronization between
  *                             routines called by the timer handler and
  *                             governer's target_index calls
+ * @policy:                    Associated CPUFreq policy
  */
 struct global_pstate_info {
        int highest_lpstate_idx;
 
 /* Use following functions for conversions between pstate_id and index */
 
-/**
+/*
  * idx_to_pstate : Returns the pstate id corresponding to the
  *                frequency in the cpufreq frequency table
  *                powernv_freqs indexed by @i.
        return powernv_freqs[i].driver_data;
 }
 
-/**
+/*
  * pstate_to_idx : Returns the index in the cpufreq frequencytable
  *                powernv_freqs for the frequency whose corresponding
  *                pstate id is @pstate.
 /**
  * gpstate_timer_handler
  *
- * @data: pointer to cpufreq_policy on which timer was queued
+ * @t: Timer context used to fetch global pstate info struct
  *
  * This handler brings down the global pstate closer to the local pstate
  * according quadratic equation. Queues a new timer if it is still not equal