mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
55313bd3b0
Replaced snd_soc_register_platform with devm_snd_soc_register_platform in samsung_asoc_dma_platform_register(). This makes the function samsung_asoc_dma_platform_unregister() redundant. This is removed and all its users are updated. Signed-off-by: Tushar Behera <tushar.behera@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
38 lines
942 B
C
38 lines
942 B
C
/*
|
|
* dma.h --
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* ALSA PCM interface for the Samsung SoC
|
|
*/
|
|
|
|
#ifndef _S3C_AUDIO_H
|
|
#define _S3C_AUDIO_H
|
|
|
|
#include <sound/dmaengine_pcm.h>
|
|
|
|
struct s3c_dma_client {
|
|
char *name;
|
|
};
|
|
|
|
struct s3c_dma_params {
|
|
struct s3c_dma_client *client; /* stream identifier */
|
|
int channel; /* Channel ID */
|
|
dma_addr_t dma_addr;
|
|
int dma_size; /* Size of the DMA transfer */
|
|
unsigned ch;
|
|
struct samsung_dma_ops *ops;
|
|
char *ch_name;
|
|
struct snd_dmaengine_dai_dma_data dma_data;
|
|
};
|
|
|
|
void samsung_asoc_init_dma_data(struct snd_soc_dai *dai,
|
|
struct s3c_dma_params *playback,
|
|
struct s3c_dma_params *capture);
|
|
int samsung_asoc_dma_platform_register(struct device *dev);
|
|
|
|
#endif
|