Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  *  Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com
0004  */
0005 
0006 #ifndef __UDMA_PCM_H__
0007 #define __UDMA_PCM_H__
0008 
0009 #if IS_ENABLED(CONFIG_SND_SOC_TI_UDMA_PCM)
0010 int udma_pcm_platform_register(struct device *dev);
0011 #else
0012 static inline int udma_pcm_platform_register(struct device *dev)
0013 {
0014     return 0;
0015 }
0016 #endif /* CONFIG_SND_SOC_TI_UDMA_PCM */
0017 
0018 #endif /* __UDMA_PCM_H__ */