1. 01 1月, 2016 2 次提交
  2. 28 12月, 2015 2 次提交
  3. 24 12月, 2015 1 次提交
  4. 12 12月, 2015 4 次提交
  5. 10 12月, 2015 13 次提交
  6. 07 12月, 2015 4 次提交
  7. 03 12月, 2015 1 次提交
  8. 27 11月, 2015 1 次提交
    • A
      cpufreq: s3c24xx: Do not mark s3c2410_plls_add as __init · 62f49ee2
      Arnd Bergmann 提交于
      s3c2410_plls_add is a device notifier that may be called at runtime and
      is correctly not marked __init. However it calls s3c_plltab_register()
      which is marked __init, and that triggers a build error when we are
      checking for section mismatches:
      
      WARNING: vmlinux.o(.text+0x195e0): Section mismatch in reference from the function s3c2410_plls_add() to the function .init.text:s3c_plltab_register()
      The function s3c2410_plls_add() references
      the function __init s3c_plltab_register().
      This is often because s3c2410_plls_add lacks a __init
      annotation or the annotation of s3c_plltab_register is wrong.
      
      This removes the __init annotation from s3c2410_plls_add as well as the
      __initdata section annotations from s3c2440_plls_12 and s3c2440_plls_169344,
      which in turn are referenced from s3c2410_plls_add.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NKrzysztof Kozlowski <k.kozlowski@samsung.com>
      62f49ee2
  9. 26 11月, 2015 1 次提交
  10. 24 11月, 2015 5 次提交
  11. 19 11月, 2015 5 次提交
  12. 07 11月, 2015 1 次提交