1. 08 12月, 2011 1 次提交
    • A
      ASoC: Fix a typo in jive_wm8750 · 68264d2a
      Axel Lin 提交于
      Fix a typo in jive_wm8750 that introduces below build error.
      Also removes an unused err variable.
      
        CC      sound/soc/samsung/jive_wm8750.o
      sound/soc/samsung/jive_wm8750.c: In function 'jive_wm8750_init':
      sound/soc/samsung/jive_wm8750.c:104: warning: unused variable 'err'
      sound/soc/samsung/jive_wm8750.c: At top level:
      sound/soc/samsung/jive_wm8750.c:134: error: unknown field 'dapm_widgtets' specified in initializer
      sound/soc/samsung/jive_wm8750.c:134: warning: initialization from incompatible pointer type
      make[3]: *** [sound/soc/samsung/jive_wm8750.o] Error 1
      make[2]: *** [sound/soc/samsung] Error 2
      make[1]: *** [sound/soc] Error 2
      make: *** [sound] Error 2
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      68264d2a
  2. 28 11月, 2011 1 次提交
  3. 23 11月, 2011 1 次提交
    • B
      ASoC: SAMSUNG: Fix build error · 3d94a2a5
      Boojin Kim 提交于
      This patch adds <linux/modules.h> to fix following build errors.
      
      sound/soc/codecs/wm8994.c: In function 'wm8994_readable':
      sound/soc/codecs/wm8994.c:58: warning: unused variable 'wm8994'
      sound/soc/samsung/smdk_wm8994.c:176: error: expected declaration specifiers or '...' before string constant
      sound/soc/samsung/smdk_wm8994.c:176: warning: data definition has no type or storage class
      sound/soc/samsung/smdk_wm8994.c:176: warning: type defaults to 'int' in declaration of 'MODULE_DESCRIPTION'
      sound/soc/samsung/smdk_wm8994.c:176: warning: function declaration isn't a prototype
      sound/soc/samsung/smdk_wm8994.c:177: error: expected declaration specifiers or '...' before string constant
      Signed-off-by: NBoojin Kim <boojin.kim@samsung.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      3d94a2a5
  4. 01 11月, 2011 1 次提交
  5. 11 10月, 2011 1 次提交
  6. 10 10月, 2011 6 次提交
  7. 08 10月, 2011 1 次提交
  8. 04 10月, 2011 2 次提交
    • M
      ASoC: Flush Samsung DMA on free · 2ca95769
      Mark Brown 提交于
      Ever since it was written the Samsung DMA driver has had a TODO in the
      hw_free() function wondering if we need to flush the DMA buffers. Up until
      now the answer has been no but with the recent improvements Boojin has
      done to the DMA infrastructure for the Samsung port the answer has changed
      to yes for at least S3C6410 systems.
      
      If we don't then when we next prepare() the channel the API will get
      confused trying to run callbacks on the transfers hanging around from the
      previous time the stream was open and oops.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      Acked-by: NBoojin Kim <boojin.kim@samsung.com>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      2ca95769
    • A
      ASoC: samsung: s3c-i2s-v2.c needs module.h · f3a54a28
      Axel Lin 提交于
      Include <linux/module.h> to fix below build error:
      
        CC      sound/soc/samsung/s3c-i2s-v2.o
      sound/soc/samsung/s3c-i2s-v2.c:573: warning: data definition has no type or storage class
      sound/soc/samsung/s3c-i2s-v2.c:573: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL'
      sound/soc/samsung/s3c-i2s-v2.c:573: warning: parameter names (without types) in function declaration
      sound/soc/samsung/s3c-i2s-v2.c:638: warning: data definition has no type or storage class
      sound/soc/samsung/s3c-i2s-v2.c:638: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL'
      sound/soc/samsung/s3c-i2s-v2.c:638: warning: parameter names (without types) in function declaration
      sound/soc/samsung/s3c-i2s-v2.c:677: warning: data definition has no type or storage class
      sound/soc/samsung/s3c-i2s-v2.c:677: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL'
      sound/soc/samsung/s3c-i2s-v2.c:677: warning: parameter names (without types) in function declaration
      sound/soc/samsung/s3c-i2s-v2.c: In function 's3c_i2sv2_register_dai':
      sound/soc/samsung/s3c-i2s-v2.c:736: warning: initialization discards qualifiers from pointer target type
      sound/soc/samsung/s3c-i2s-v2.c: At top level:
      sound/soc/samsung/s3c-i2s-v2.c:754: warning: data definition has no type or storage class
      sound/soc/samsung/s3c-i2s-v2.c:754: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL'
      sound/soc/samsung/s3c-i2s-v2.c:754: warning: parameter names (without types) in function declaration
      sound/soc/samsung/s3c-i2s-v2.c:756: error: expected declaration specifiers or '...' before string constant
      sound/soc/samsung/s3c-i2s-v2.c:756: warning: data definition has no type or storage class
      sound/soc/samsung/s3c-i2s-v2.c:756: warning: type defaults to 'int' in declaration of 'MODULE_LICENSE'
      sound/soc/samsung/s3c-i2s-v2.c:756: warning: function declaration isn't a prototype
      make[3]: *** [sound/soc/samsung/s3c-i2s-v2.o] Error 1
      make[2]: *** [sound/soc/samsung] Error 2
      make[1]: *** [sound/soc] Error 2
      make: *** [sound] Error 2
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      f3a54a28
  9. 03 10月, 2011 4 次提交
  10. 28 9月, 2011 1 次提交
  11. 23 9月, 2011 4 次提交
  12. 22 9月, 2011 1 次提交
  13. 20 9月, 2011 1 次提交
  14. 16 9月, 2011 1 次提交
  15. 14 9月, 2011 1 次提交
  16. 31 8月, 2011 1 次提交
    • M
      ASoC: Allow source specification for CODEC level sysclk · da1c6ea6
      Mark Brown 提交于
      Similarly to PLLs/FLLs some modern CODECs provide selectable system clock
      sources. When the clock is the clock for a DAI we do not usually need to
      identify which clock is being configured so can use clk_id for the source
      clock but with CODEC wide system clocks we will need to specify both the
      clock being configured and the source.
      
      Add a source argument to the CODEC driver set_sysclk() operation to
      reflect this. As this operation is not as widely used as the DAI
      set_sysclk() operation the change is not very invasive. We probably
      ought to go and make the same alternation for DAIs at some point.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      da1c6ea6
  17. 24 8月, 2011 2 次提交
  18. 22 8月, 2011 1 次提交
  19. 16 8月, 2011 1 次提交
  20. 14 8月, 2011 3 次提交
    • V
      ASoC: rx1950: Fix compilation error due to missing header · b8487928
      Vasily Khoruzhick 提交于
      Add linux/types.h to fix this compilation error:
      
      In file included from arch/arm/mach-s3c2410/include/mach/gpio-fns.h:27:0,
                       from arch/arm/mach-s3c2410/include/mach/gpio.h:27,
                       from /home/anarsoul/work/pda-linux/linux-next/arch/arm/include/asm/gpio.h:5,
                       from include/linux/gpio.h:18,
                       from sound/soc/samsung/rx1950_uda1380.c:20:
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:29:34: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:30:34: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s5p_gpio_drvstr_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:57:2: error: expected specifier-qualifier-list before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:148:47: error: expected declaration specifiers or ‘...’ before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:156:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s3c_gpio_getpull’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:175:24: error: expected declaration specifiers or ‘...’ before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h: In function ‘s3c_gpio_cfgrange_nopull’:
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: error: ‘s3c_gpio_pull_t’ undeclared (first use in this function)
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: note: each undeclared identifier is reported only once for each function it appears in
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: error: expected ‘)’ before numeric constant
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: error: too many arguments to function ‘s3c_gpio_cfgall_range’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:174:12: note: declared here
      arch/arm/plat-samsung/include/plat/gpio-cfg.h: At top level:
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:199:26: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s5p_gpio_get_drvstr’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:210:50: error: expected declaration specifiers or ‘...’ before ‘s5p_gpio_drvstr_t’
      Signed-off-by: NVasily Khoruzhick <anarsoul@gmail.com>
      Acked-by: NJassi Brar <jassisinghbrar@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      b8487928
    • V
      ASoC: h1940: Fix compilation error due to missing header · fd049755
      Vasily Khoruzhick 提交于
      Add linux/types.h to fix this compilation error:
      
      In file included from arch/arm/mach-s3c2410/include/mach/gpio-fns.h:27:0,
                       from arch/arm/mach-s3c2410/include/mach/gpio.h:27,
                       from /home/anarsoul/work/pda-linux/linux-next/arch/arm/include/asm/gpio.h:5,
                       from include/linux/gpio.h:18,
                       from sound/soc/samsung/rx1950_uda1380.c:20:
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:29:34: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:30:34: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s5p_gpio_drvstr_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:57:2: error: expected specifier-qualifier-list before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:148:47: error: expected declaration specifiers or ‘...’ before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:156:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s3c_gpio_getpull’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:175:24: error: expected declaration specifiers or ‘...’ before ‘s3c_gpio_pull_t’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h: In function ‘s3c_gpio_cfgrange_nopull’:
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: error: ‘s3c_gpio_pull_t’ undeclared (first use in this function)
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: note: each undeclared identifier is reported only once for each function it appears in
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: error: expected ‘)’ before numeric constant
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:180:47: error: too many arguments to function ‘s3c_gpio_cfgall_range’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:174:12: note: declared here
      arch/arm/plat-samsung/include/plat/gpio-cfg.h: At top level:
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:199:26: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘s5p_gpio_get_drvstr’
      arch/arm/plat-samsung/include/plat/gpio-cfg.h:210:50: error: expected declaration specifiers or ‘...’ before ‘s5p_gpio_drvstr_t’
      Signed-off-by: NVasily Khoruzhick <anarsoul@gmail.com>
      Acked-by: NJassi Brar <jassisinghbrar@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      fd049755
    • M
      dc5de62b
  21. 12 8月, 2011 2 次提交
  22. 09 8月, 2011 3 次提交