Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * uda134x.h  --  UDA134x ALSA SoC Codec driver
0004  *
0005  * Copyright 2007 Dension Audio Systems Ltd.
0006  * Author: Zoltan Devai
0007  */
0008 
0009 #ifndef _UDA134X_H
0010 #define _UDA134X_H
0011 
0012 #include <sound/l3.h>
0013 
0014 struct uda134x_platform_data {
0015     struct l3_pins l3;
0016     void (*power) (int);
0017     int model;
0018 #define UDA134X_UDA1340 1
0019 #define UDA134X_UDA1341 2
0020 #define UDA134X_UDA1344 3
0021 #define UDA134X_UDA1345 4
0022 };
0023 
0024 #endif /* _UDA134X_H */