1. 11 Mar, 2014 2 commits
  2. 09 Mar, 2014 4 commits
  3. 06 Mar, 2014 5 commits
  4. 05 Mar, 2014 6 commits
    • Barry Song's avatar
      ARM: prima2: move to generic reset controller driver framework · e7eda91f
      Barry Song authored
      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: default avatarBarry Song <Baohua.Song@csr.com>
      Signed-off-by: default avatarBin Shi <Bin.Shi@csr.com>
      Acked-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
      e7eda91f
    • Barry Song's avatar
      ARM: prima2: staticize sirfsoc_init_late function · 951ec090
      Barry Song authored
      sirfsoc_init_late() is a local function not an extern interface to anyone.
      Signed-off-by: default avatarBarry Song <Baohua.Song@csr.com>
      951ec090
    • Barry Song's avatar
      ARM: prima2: rtciobrg: fix the typo about license · 5b7356bb
      Barry Song authored
      we are marking GPL v2 in head comments, but MODULE_LICENSE is declaring GPL.
      Signed-off-by: default avatarBarry Song <Baohua.Song@csr.com>
      5b7356bb
    • Barry Song's avatar
      ARM: prima2: common: fix checkpatch issues · 8ccf166c
      Barry Song authored
      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: default avatarBarry Song <Baohua.Song@csr.com>
      8ccf166c
    • Barry Song's avatar
      ARM: prima2: platsmp: fix checkpatch issues · 661bfe23
      Barry Song authored
      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: default avatarBarry Song <Baohua.Song@csr.com>
      661bfe23
    • Barry Song's avatar
      ARM: prima2: l2x0: fix checkpatch issues · c2ed0f36
      Barry Song authored
      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: default avatarBarry Song <Baohua.Song@csr.com>
      c2ed0f36
  5. 04 Mar, 2014 1 commit
  6. 28 Feb, 2014 3 commits
    • Alexander Shiyan's avatar
      ARM: clps711x: Update defconfig · cf460cde
      Alexander Shiyan authored
      This updates the CLPS711X defconfig to the thing saved by savedefconfig.
      Signed-off-by: default avatarAlexander Shiyan <shc_work@mail.ru>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      cf460cde
    • Alexander Shiyan's avatar
      ARM: clps711x: Remove EP72XX_ROM_BOOT option · 32c6c01b
      Alexander Shiyan authored
      CLPS711X CPUs have 128 bytes of on-chip Boot ROM with an
      instruction sequence that configure UART1 to receive up to
      2 Kbytes of serial data which is then placed in the on-chip
      SRAM. Once the download is complete, the program counter
      jumps to SRAM to begin executed the downloaded data.
      The purpose of this mode is to allow the downloaded code to
      facilitate programming of FLASH or other ROM device. Selection
      of the internal Boot ROM is accomplished at power-on-reset time.
      No reason to keep this special (develop only) mode in the kernel.
      This patch removes EP72XX_ROM_BOOT kernel symbol.
      Signed-off-by: default avatarAlexander Shiyan <shc_work@mail.ru>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      32c6c01b
    • Arnd Bergmann's avatar
      Merge tag 'kconfig-cleanup-for-3.15' of... · ead47a75
      Arnd Bergmann authored
      Merge tag 'kconfig-cleanup-for-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux into next/cleanup
      
      Merge "kconfig clean-up and mach-virt removal for 3.15" from Rob Herring
      
      - Remove common kconfig options required by multi-platform builds out
      of individual platforms as they are redundant.
      - Make SMP, CACHE_L2X0 and GPIO config options user visible on
      multi-platform builds as most platforms enable these options and all
      platforms can run with them enabled.
      - Make multi-platform v6 default to more optimal v6k rather than v6
      - Remove the last bit of mach-virt and convert it to just a kconfig
      option.
      
      * tag 'kconfig-cleanup-for-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
        ARM: virt: select ARM_AMBA
        ARM: virt: make mach-virt just a kconfig option
        ARM: vt8500: enable V6K instead of plain V6
        ARM: cns3xxx: enable V6K instead of plain V6
        ARM: bcm2835: enable V6K instead of plain V6
        ARM: Select V6K instead of V6 by default for multi-platform
        ARM: select MIGHT_HAVE_CACHE_L2X0 for V6 and V7 multi-platform
        ARM: select HAVE_SMP for V7 multi-platform
        ARM: centralize common multi-platform kconfig options
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      ead47a75
  7. 25 Feb, 2014 2 commits
  8. 24 Feb, 2014 6 commits
  9. 22 Feb, 2014 1 commit
  10. 20 Feb, 2014 2 commits
  11. 19 Feb, 2014 8 commits