summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVinod G <vinodg@nvidia.com>2011-11-29 17:32:11 -0800
committerVarun Wadekar <vwadekar@nvidia.com>2011-12-08 17:04:07 +0530
commit5fac479d8dddb8b9bfada756379357726dc57ed0 (patch)
treea44fde297338237951eff0cbb23aa0cdce8497ef /include
parent8d3d9f8fbde05efd16b159c3d059d643e74746fd (diff)
kernel: sound: Adding TI codec support
Adding the code for supporting TI AIC3262 codec. bug 816608 Change-Id: I19c3e03e8fd442c0c19a72a7efeddcd0ca05a7e1 Reviewed-on: http://git-master/r/67279 Reviewed-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com> Tested-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com> Reviewed-by: Scott Peterson <speterson@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r--include/sound/tlv320aic326x.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/sound/tlv320aic326x.h b/include/sound/tlv320aic326x.h
new file mode 100644
index 000000000000..97e5841f9044
--- /dev/null
+++ b/include/sound/tlv320aic326x.h
@@ -0,0 +1,23 @@
+/*
+ * Platform data for Texas Instruments TLV320AIC326x codec
+ *
+ * Copyright 2010 TI Products
+ *
+ * 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.
+ *
+ */
+#ifndef __LINUX_SND_TLV320AIC326x_H__
+#define __LINUX_SND_TLV320AIC326x_H__
+
+/* codec platform data */
+struct aic326x_pdata {
+
+ /* has to be one of 16,32,64,128,256,512 ms
+ as per the data sheet */
+ unsigned int debounce_time_ms;
+};
+
+#endif