1. 19 4月, 2012 7 次提交
  2. 16 4月, 2012 4 次提交
  3. 15 4月, 2012 2 次提交
  4. 14 4月, 2012 8 次提交
  5. 13 4月, 2012 4 次提交
  6. 10 4月, 2012 4 次提交
  7. 09 4月, 2012 3 次提交
    • J
      ARM: EXYNOS: Fix compile error in exynos5250-cpufreq.c · 32db797f
      Jonghwan Choi 提交于
      This patch is omitted in v2 patch of Jaecheol Lee.
      
      drivers/cpufreq/exynos5250-cpufreq.c: In function 'set_clkdiv':
      drivers/cpufreq/exynos5250-cpufreq.c:144: error: 'EXYNOS5_CLKDIV_STATCPU0' undeclared (first use in this function)
      drivers/cpufreq/exynos5250-cpufreq.c:144: error: (Each undeclared identifier is reported only once
      drivers/cpufreq/exynos5250-cpufreq.c:144: error: for each function it appears in.)
      drivers/cpufreq/exynos5250-cpufreq.c:150: error: 'EXYNOS5_CLKDIV_CPU1' undeclared (first use in this function)
      drivers/cpufreq/exynos5250-cpufreq.c:152: error: 'EXYNOS5_CLKDIV_STATCPU1' undeclared (first use in this function)
      drivers/cpufreq/exynos5250-cpufreq.c: In function 'set_apll':
      drivers/cpufreq/exynos5250-cpufreq.c:166: error: 'EXYNOS5_CLKMUX_STATCPU' undeclared (first use in this function)
      drivers/cpufreq/exynos5250-cpufreq.c:173: error: 'EXYNOS5_APLL_LOCK' undeclared (first use in this function)
      drivers/cpufreq/exynos5250-cpufreq.c: In function 'exynos5250_cpufreq_init':
      drivers/cpufreq/exynos5250-cpufreq.c:312: error: 'EXYNOS5_CLKDIV_CPU1' undeclared (first use in this function)
      
      Cc: Jaecheol Lee <jc.lee@samsung.com>
      Signed-off-by: NJonghwan Choi <jhbird.choi@samsung.com>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      32db797f
    • T
      ARM: EXYNOS: Add missing definition for IRQ_I2S0 · 0d923490
      Tushar Behera 提交于
      This fixes following build error when sound support is selected
      on EXYNOS4 platform.
      
      sound/soc/samsung/idma.c: In function ‘idma_close’:
      sound/soc/samsung/idma.c:327:11: error: ‘IRQ_I2S0’ undeclared (first use in this function)
      Signed-off-by: NTushar Behera <tushar.behera@linaro.org>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      0d923490
    • K
      ARM: S5PV210: fix unused LDO supply field from wm8994_pdata · 70499329
      Kukjin Kim 提交于
      According to commit 719a4240("mfd: Remove unused LDO supply field
      from WM8994 pdata"), the LDO supply field should be removed from
      the initializer.
      
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      70499329
  8. 06 4月, 2012 2 次提交
    • S
      simple_open: automatically convert to simple_open() · 234e3405
      Stephen Boyd 提交于
      Many users of debugfs copy the implementation of default_open() when
      they want to support a custom read/write function op.  This leads to a
      proliferation of the default_open() implementation across the entire
      tree.
      
      Now that the common implementation has been consolidated into libfs we
      can replace all the users of this function with simple_open().
      
      This replacement was done with the following semantic patch:
      
      <smpl>
      @ open @
      identifier open_f != simple_open;
      identifier i, f;
      @@
      -int open_f(struct inode *i, struct file *f)
      -{
      (
      -if (i->i_private)
      -f->private_data = i->i_private;
      |
      -f->private_data = i->i_private;
      )
      -return 0;
      -}
      
      @ has_open depends on open @
      identifier fops;
      identifier open.open_f;
      @@
      struct file_operations fops = {
      ...
      -.open = open_f,
      +.open = simple_open,
      ...
      };
      </smpl>
      
      [akpm@linux-foundation.org: checkpatch fixes]
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Cc: Julia Lawall <Julia.Lawall@lip6.fr>
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      234e3405
    • R
      ARM: fix __io macro for PCMCIA · 1ac02d79
      Rob Herring 提交于
      With commit c334bc15 (ARM: make mach/io.h include optional), PCMCIA was
      broken. PCMCIA depends on __io() returning a valid i/o address, and most
      ARM platforms require IO_SPACE_LIMIT be set to 0xffffffff for PCMCIA. This
      needs a better fix with a fixed i/o address mapping, but for now we just
      restore things to the previous behavior.
      
      This fixes at91, omap1, pxa and sa11xx. pxa needs io.h if PCI is enabled,
      but PCMCIA is not. sa11xx already has IO_SPACE_LIMIT set to 0xffffffff,
      so it doesn't need an io.h.
      Signed-off-by: NRob Herring <rob.herring@calxeda.com>
      Cc: Joachim Eastwood <joachim.eastwood@jotron.com>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Andrew Victor <linux@maxim.org.za>
      Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
      Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
      Tested-by: Paul Parsons <lost.distance@yahoo.com> (pxa270)
      Acked-by: NTony Lindgren <tony@atomide.com>
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      1ac02d79
  9. 05 4月, 2012 6 次提交