You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
24 lines
373 B
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2019, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __VOICE_MHI_H__
|
|
#define __VOICE_MHI_H__
|
|
|
|
#ifdef CONFIG_VOICE_MHI
|
|
int voice_mhi_start(void);
|
|
int voice_mhi_end(void);
|
|
#else
|
|
static inline int voice_mhi_start(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int voice_mhi_end(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|