~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to sound/soc/samsung/s3c2412-i2s.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * option) any later version.
17
17
 */
18
18
 
19
 
#include <linux/init.h>
20
 
#include <linux/module.h>
21
 
#include <linux/device.h>
22
19
#include <linux/delay.h>
23
20
#include <linux/gpio.h>
24
21
#include <linux/clk.h>
25
 
#include <linux/kernel.h>
26
22
#include <linux/io.h>
27
23
 
28
 
#include <sound/core.h>
29
 
#include <sound/pcm.h>
 
24
#include <sound/soc.h>
30
25
#include <sound/pcm_params.h>
31
 
#include <sound/initval.h>
32
 
#include <sound/soc.h>
33
 
#include <mach/hardware.h>
34
26
 
35
27
#include <mach/regs-gpio.h>
36
28
#include <mach/dma.h>
39
31
#include "regs-i2s-v2.h"
40
32
#include "s3c2412-i2s.h"
41
33
 
42
 
#define S3C2412_I2S_DEBUG 0
43
 
 
44
34
static struct s3c2410_dma_client s3c2412_dma_client_out = {
45
35
        .name           = "I2S PCM Stereo out"
46
36
};