1. 22 3月, 2014 1 次提交
  2. 18 3月, 2014 1 次提交
    • A
      ARM: prima2: build reset code standalone · 48352e52
      Arnd Bergmann 提交于
      The prima2 platform code currently depends on the rstc
      implementation and that in turn depends on the reset
      controller framework. This removes the platform dependency
      by letting the driver access arm_pm_restart directly
      to turn the driver into a standalone entity, and also
      removes the dependency on the reset controller framework
      by using "if (IS_ENABLED(CONFIG_RESET_CONTROLLER))". This
      will cause all code that is used for the reset controller
      to be dropped by the compiler if the framework is disabled.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      48352e52
  3. 13 3月, 2014 1 次提交
  4. 12 3月, 2014 15 次提交
  5. 10 3月, 2014 3 次提交
  6. 06 3月, 2014 5 次提交
  7. 05 3月, 2014 6 次提交
    • B
      ARM: prima2: move to generic reset controller driver framework · e7eda91f
      Barry Song 提交于
      this moves to generic IP module reset framework, and make other drivers
      use common device_reset() API.
      
      Cc: Srinivas Kandagatla <srinivas.kandagatla@st.com>
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      Signed-off-by: NBin Shi <Bin.Shi@csr.com>
      Acked-by: NPhilipp Zabel <p.zabel@pengutronix.de>
      e7eda91f
    • B
      ARM: prima2: staticize sirfsoc_init_late function · 951ec090
      Barry Song 提交于
      sirfsoc_init_late() is a local function not an extern interface to anyone.
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      951ec090
    • B
      ARM: prima2: rtciobrg: fix the typo about license · 5b7356bb
      Barry Song 提交于
      we are marking GPL v2 in head comments, but MODULE_LICENSE is declaring GPL.
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      5b7356bb
    • B
      ARM: prima2: common: fix checkpatch issues · 8ccf166c
      Barry Song 提交于
      fix the below checkpatch issues:
      ERROR: Use of const init definition must use __initconst
      30: FILE: common.c:30:
      +static const char *atlas6_dt_match[] __initdata = {
      
      ERROR: Use of const init definition must use __initconst
      45: FILE: common.c:45:
      +static const char *prima2_dt_match[] __initdata = {
      
      ERROR: Use of const init definition must use __initconst
      61: FILE: common.c:61:
      +static const char *marco_dt_match[] __initdata = {
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      8ccf166c
    • B
      ARM: prima2: platsmp: fix checkpatch issues · 661bfe23
      Barry Song 提交于
      fix the below checkpatch issues:
      ERROR: code indent should use tabs where possible
      141: FILE: platsmp.c:141:
      +        .smp_prepare_cpus       = sirfsoc_smp_prepare_cpus,$
      
      WARNING: please, no spaces at the start of a line
      141: FILE: platsmp.c:141:
      +        .smp_prepare_cpus       = sirfsoc_smp_prepare_cpus,$
      
      ERROR: code indent should use tabs where possible
      142: FILE: platsmp.c:142:
      +        .smp_secondary_init     = sirfsoc_secondary_init,$
      
      WARNING: please, no spaces at the start of a line
      142: FILE: platsmp.c:142:
      +        .smp_secondary_init     = sirfsoc_secondary_init,$
      
      ERROR: code indent should use tabs where possible
      143: FILE: platsmp.c:143:
      +        .smp_boot_secondary     = sirfsoc_boot_secondary,$
      
      WARNING: please, no spaces at the start of a line
      143: FILE: platsmp.c:143:
      +        .smp_boot_secondary     = sirfsoc_boot_secondary,$
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      661bfe23
    • B
      ARM: prima2: l2x0: fix checkpatch issues · c2ed0f36
      Barry Song 提交于
      Fix the below checkpatch issues:
      
      ERROR: open brace '{' following struct go on the same line
      15: FILE: l2x0.c:15:
      +struct l2x0_aux
      +{
      
      ERROR: Use of __initconst requires a separate use of const
      20: FILE: l2x0.c:20:
      +static struct l2x0_aux prima2_l2x0_aux __initconst = {
      
      ERROR: Use of __initconst requires a separate use of const
      25: FILE: l2x0.c:25:
      +static struct l2x0_aux marco_l2x0_aux __initconst = {
      
      ERROR: Use of __initconst requires a separate use of const
      31: FILE: l2x0.c:31:
      +static struct of_device_id sirf_l2x0_ids[] __initconst = {
      Signed-off-by: NBarry Song <Baohua.Song@csr.com>
      c2ed0f36
  8. 01 3月, 2014 2 次提交
  9. 25 2月, 2014 1 次提交
  10. 24 2月, 2014 5 次提交