cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

udma-pcm.h (419B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 *  Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com
      4 */
      5
      6#ifndef __UDMA_PCM_H__
      7#define __UDMA_PCM_H__
      8
      9#if IS_ENABLED(CONFIG_SND_SOC_TI_UDMA_PCM)
     10int udma_pcm_platform_register(struct device *dev);
     11#else
     12static inline int udma_pcm_platform_register(struct device *dev)
     13{
     14	return 0;
     15}
     16#endif /* CONFIG_SND_SOC_TI_UDMA_PCM */
     17
     18#endif /* __UDMA_PCM_H__ */