diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-12-10 20:34:45 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-12-18 19:54:00 +0100 |
commit | 6f2032a18969d22740a865e0b4f2e48cf5338f36 (patch) | |
tree | febca721ef37f8d0ff3cc67a29e9d29181414a33 /sound/soc/cirrus/ep93xx-pcm.h | |
parent | ASoC: ep93xx: Use devm_snd_dmaengine_pcm_register() (diff) | |
download | linux-6f2032a18969d22740a865e0b4f2e48cf5338f36.tar.xz linux-6f2032a18969d22740a865e0b4f2e48cf5338f36.zip |
ASoC: ep93xx: get rid of ep93xx-pcm-audio struct device
Modify the ep93xx PCM driver so that it's a utility library that can be
registered on each DAI, rather than a separate struct device. This is
more in line with how many recent DT-converted platforms operate, and
avoids the need for yet another struct device.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/cirrus/ep93xx-pcm.h')
-rw-r--r-- | sound/soc/cirrus/ep93xx-pcm.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sound/soc/cirrus/ep93xx-pcm.h b/sound/soc/cirrus/ep93xx-pcm.h new file mode 100644 index 000000000000..b7a12a2fae9c --- /dev/null +++ b/sound/soc/cirrus/ep93xx-pcm.h @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __EP93XX_PCM_H__ +#define __EP93XX_PCM_H__ + +int devm_ep93xx_pcm_platform_register(struct device *dev); + +#endif |