Blame view

drivers/devfreq/governor_performance.c 728 Bytes
ce26c5bb9   MyungJoo Ham   PM / devfreq: Add...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  /*
   *  linux/drivers/devfreq/governor_performance.c
   *
   *  Copyright (C) 2011 Samsung Electronics
   *	MyungJoo Ham <myungjoo.ham@samsung.com>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #include <linux/devfreq.h>
  
  static int devfreq_performance_func(struct devfreq *df,
  				    unsigned long *freq)
  {
  	/*
  	 * target callback should be able to get floor value as
  	 * said in devfreq.h
  	 */
  	*freq = UINT_MAX;
  	return 0;
  }
  
  const struct devfreq_governor devfreq_performance = {
  	.name = "performance",
  	.get_target_freq = devfreq_performance_func,
  	.no_central_polling = true,
  };