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

« back to all changes in this revision

Viewing changes to sound/soc/samsung/spdif.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2011-12-06 15:56:07 UTC
  • Revision ID: package-import@ubuntu.com-20111206155607-pcf44kv5fmhk564f
Tags: 3.2.0-1401.1
[ Paolo Pisati ]

* Rebased on top of Ubuntu-3.2.0-3.8
* Tilt-tracking @ ef2487af4bb15bdd0689631774b5a5e3a59f74e2
* Delete debian.ti-omap4/control, it shoudln't be tracked
* Fix architecture spelling (s/armel/armhf/)
* [Config] Update configs following 3.2 import
* [Config] Fix compilation: disable CODA and ARCH_OMAP3
* [Config] Fix compilation: disable Ethernet Faraday
* Update series to precise

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
#include <linux/clk.h>
14
14
#include <linux/io.h>
 
15
#include <linux/module.h>
15
16
 
16
17
#include <sound/soc.h>
17
18
#include <sound/pcm_params.h>
340
341
        .shutdown       = spdif_shutdown,
341
342
};
342
343
 
343
 
struct snd_soc_dai_driver samsung_spdif_dai = {
 
344
static struct snd_soc_dai_driver samsung_spdif_dai = {
344
345
        .name = "samsung-spdif",
345
346
        .playback = {
346
347
                .stream_name = "S/PDIF Playback",
475
476
 
476
477
static struct platform_driver samsung_spdif_driver = {
477
478
        .probe  = spdif_probe,
478
 
        .remove = spdif_remove,
 
479
        .remove = __devexit_p(spdif_remove),
479
480
        .driver = {
480
481
                .name   = "samsung-spdif",
481
482
                .owner  = THIS_MODULE,