mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
b28528a124
This patch adds support for Philips UDA1345 CODEC. The CODEC has only volume control, de-emphasis, mute, DC filtering and power control features. Signed-off-by: Vladimir Zapolskiy <vzapolskiy@gmail.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
27 lines
597 B
C
27 lines
597 B
C
/*
|
|
* uda134x.h -- UDA134x ALSA SoC Codec driver
|
|
*
|
|
* Copyright 2007 Dension Audio Systems Ltd.
|
|
* Author: Zoltan Devai
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _UDA134X_H
|
|
#define _UDA134X_H
|
|
|
|
#include <sound/l3.h>
|
|
|
|
struct uda134x_platform_data {
|
|
struct l3_pins l3;
|
|
void (*power) (int);
|
|
int model;
|
|
#define UDA134X_UDA1340 1
|
|
#define UDA134X_UDA1341 2
|
|
#define UDA134X_UDA1344 3
|
|
#define UDA134X_UDA1345 4
|
|
};
|
|
|
|
#endif /* _UDA134X_H */
|