/* * 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>staticintdevfreq_performance_func(structdevfreq*df,unsignedlong*freq){/* * target callback should be able to get floor value as * said in devfreq.h */*freq=UINT_MAX;return0;}conststructdevfreq_governordevfreq_performance={.name="performance",.get_target_freq=devfreq_performance_func,.no_central_polling=true,};