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

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

Merge "soc: add snd_event_init func for mark audio KPI"

parents a57c600e 8985f86c
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018, 2021 The Linux Foundation. All rights reserved.
 */

#include <linux/platform_device.h>
@@ -8,6 +8,7 @@
#include <linux/module.h>
#include <linux/of_device.h>
#include <soc/snd_event.h>
#include <soc/qcom/boot_stats.h>

struct snd_event_client {
	struct list_head node;
@@ -490,5 +491,17 @@ int snd_event_notify(struct device *dev, unsigned int state)
}
EXPORT_SYMBOL(snd_event_notify);

static int __init snd_event_init(void)
{
	place_marker("M - Driver Sound Event Init");
	return 0;
}
module_init(snd_event_init);

static void __exit snd_event_exit(void)
{
}
module_exit(snd_event_exit);

MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("SND event module");