
Remove backend cpu dai driver Change-Id: Ibe7bdbc765970f8eab57562858c1caf3ed8ecc7b Signed-off-by: Taha Azzaoui <tazzaoui@codeaurora.org>
25 lines
443 B
C
25 lines
443 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2017, 2020 The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include "platform_init.h"
|
|
|
|
static int __init audio_platform_init(void)
|
|
{
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void audio_platform_exit(void)
|
|
{
|
|
}
|
|
|
|
module_init(audio_platform_init);
|
|
module_exit(audio_platform_exit);
|
|
|
|
MODULE_DESCRIPTION("Audio Platform driver");
|
|
MODULE_LICENSE("GPL v2");
|