Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1f716a06 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm-perf: Added node for perf notification"

parents 4637ca5f 5190e750
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -700,6 +700,18 @@ module_param_cb(evnt_gplaf_pid, &param_ops_game_start_pid, NULL, 0644);

/*******************************GFX Call************************************/

static bool splh_notif;
static int set_splh_notif(const char *buf, const struct kernel_param *kp)
{
	return param_set_bool(buf, kp);
}

static const struct kernel_param_ops param_ops_splh_notification = {
	.set = set_splh_notif,
	.get = param_get_bool,
};
module_param_cb(splh_notif, &param_ops_splh_notification, &splh_notif, 0644);

static int __init msm_performance_init(void)
{
	int ret;