linux/drivers/devfreq/governor_performance.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 *  linux/drivers/devfreq/governor_performance.c
 *
 *  Copyright (C) 2011 Samsung Electronics
 *	MyungJoo Ham <[email protected]>
 */

#include <linux/devfreq.h>
#include <linux/module.h>
#include "governor.h"

static int devfreq_performance_func(struct devfreq *df,
				    unsigned long *freq)
{}

static int devfreq_performance_handler(struct devfreq *devfreq,
				unsigned int event, void *data)
{}

static struct devfreq_governor devfreq_performance =;

static int __init devfreq_performance_init(void)
{}
subsys_initcall(devfreq_performance_init);

static void __exit devfreq_performance_exit(void)
{}
module_exit(devfreq_performance_exit);
MODULE_LICENSE();