1. 30 5月, 2016 3 次提交
  2. 20 10月, 2014 1 次提交
  3. 26 5月, 2014 1 次提交
  4. 19 4月, 2014 2 次提交
  5. 24 11月, 2013 1 次提交
  6. 19 9月, 2013 1 次提交
  7. 20 8月, 2013 1 次提交
  8. 12 7月, 2013 1 次提交
  9. 04 4月, 2013 1 次提交
  10. 27 3月, 2013 1 次提交
  11. 20 3月, 2013 3 次提交
  12. 13 3月, 2013 1 次提交
  13. 04 3月, 2013 1 次提交
  14. 12 2月, 2013 1 次提交
  15. 09 12月, 2012 1 次提交
  16. 05 10月, 2012 2 次提交
  17. 22 9月, 2012 4 次提交
  18. 13 9月, 2012 1 次提交
    • T
      ARM: OMAP: Split plat/hardware.h, use local soc.h for omap2+ · dbc04161
      Tony Lindgren 提交于
      As the plat and mach includes need to disappear for single zImage work,
      we need to remove plat/hardware.h.
      
      Do this by splitting plat/hardware.h into omap1 and omap2+ specific files.
      
      The old plat/hardware.h already has omap1 only defines, so it gets moved
      to mach/hardware.h for omap1. For omap2+, we use the local soc.h
      that for now just includes the related SoC headers to keep this patch more
      readable.
      
      Note that the local soc.h still includes plat/cpu.h that can be dealt
      with in later patches. Let's also include plat/serial.h from common.h for
      all the board-*.c files. This allows making the include files local later
      on without patching these files again.
      
      Note that only minimal changes are done in this patch for the
      drivers/watchdog/omap_wdt.c driver to keep things compiling. Further
      patches are needed to eventually remove cpu_is_omap usage in the drivers.
      
      Also only minimal changes are done to sound/soc/omap/* to remove the
      unneeded includes and to define OMAP44XX_MCPDM_L3_BASE locally so there's
      no need to include omap44xx.h.
      
      While at it, also sort some of the includes in the standard way.
      
      Cc: linux-watchdog@vger.kernel.org
      Cc: alsa-devel@alsa-project.org
      Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
      Cc: Jarkko Nikula <jarkko.nikula@bitmer.com>
      Cc: Liam Girdwood <lrg@ti.com>
      Acked-by: NWim Van Sebroeck <wim@iguana.be>
      Acked-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      dbc04161
  19. 04 8月, 2012 1 次提交
  20. 07 7月, 2012 1 次提交
  21. 23 5月, 2012 1 次提交
  22. 20 1月, 2012 1 次提交
  23. 08 12月, 2011 1 次提交
  24. 25 11月, 2011 1 次提交
  25. 23 11月, 2011 1 次提交
    • L
      ASoC: Constify snd_soc_dai_ops structs · 85e7652d
      Lars-Peter Clausen 提交于
      Commit 1ee46ebd("ASoC: Make the DAI ops constant in the DAI structure")
      introduced the possibility to have constant DAI ops structures, yet this is
      barley used in both existing drivers and also new drivers being submitted,
      although none of them modifies its DAI ops structure. The later is not
      surprising since existing drivers are often used as templates for new drivers.
      So this patch just constifies all existing snd_soc_dai_ops structs to eliminate
      the issue altogether.
      
      The patch was generated with the following coccinelle semantic patch:
      // <smpl>
      @@
      identifier ops;
      @@
      -struct snd_soc_dai_ops ops =
      +const struct snd_soc_dai_ops ops =
      { ... };
      // </smpl>
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      85e7652d
  26. 27 9月, 2011 1 次提交
  27. 23 9月, 2011 1 次提交
  28. 22 9月, 2011 3 次提交
  29. 13 10月, 2010 1 次提交