Skip to content
Snippets Groups Projects
  1. Sep 04, 2011
  2. Sep 03, 2011
    • Łukasz Majewski's avatar
      gpio:samsung: s5p_ suffix add for GPIO functions (C210_universal) · c8fc4284
      Łukasz Majewski authored
      
      This is a cosmetic patch, which is changing the gpio_ prefix to
      s5p_gpio_.
      
      Signed-off-by: default avatarLukasz Majewski <l.majewski@samsung.com>
      Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
      Signed-off-by: default avatarMinkyu Kang <mk7.kang@samsung.com>
      c8fc4284
    • Chander Kashyap's avatar
      SMDKV310: MMC SPL: Remove unwanted dummy functions · beb7f27a
      Chander Kashyap authored
      
      Removed dummy functions in "mmc_spl/board/samsung/smdkv310/mmc_boot.c",
      @mmc_boot.c
      void do_undefined_instruction(struct pt_regs *pt_regs);
      void do_software_interrupt(struct pt_regs *pt_regs);
      void do_prefetch_abort(struct pt_regs *pt_regs);
      void do_data_abort(struct pt_regs *pt_regs);
      void do_not_used(struct pt_regs *pt_regs);
      void do_fiq(struct pt_regs *pt_regs);
      void do_irq(struct pt_regs *pt_regs);
      
      not required as called conditionally in start.S
      @start.S
      \#ifdef CONFIG_SPL_BUILD
      _undefined_instruction: .word _undefined_instruction
      _software_interrupt:    .word _software_interrupt
      _prefetch_abort:        .word _prefetch_abort
      _data_abort:            .word _data_abort
      _not_used:              .word _not_used
      _irq:                   .word _irq
      _fiq:                   .word _fiq
      _pad:                   .word 0x12345678 /* now 16*4=64 */
      \#else
      _undefined_instruction: .word undefined_instruction
      _software_interrupt:    .word software_interrupt
      _prefetch_abort:        .word prefetch_abort
      _data_abort:            .word data_abort
      _not_used:              .word not_used
      _irq:                   .word irq
      _fiq:                   .word fiq
      _pad:                   .word 0x12345678 /* now 16*4=64 */
      \#endif
      e.g.
      undefined_instruction:
      	get_bad_stack
      	bad_save_user_regs
      	bl      do_undefined_instruction
      
      Signed-off-by: default avatarChander Kashyap <chander.kashyap@linaro.org>
      beb7f27a
    • Chander Kashyap's avatar
      SMDKV310: Fix undefined reference error · ebbc84af
      Chander Kashyap authored
      
      Fix buld error:
      undefined reference to '__image_copy_end' and `save_boot_params'.
      
      start.o: In function `_image_copy_end_ofs':
      mmc_spl/board/samsung/smdkv310/start.S:44: undefined reference to `__image_copy_end'
      start.o: In function `reset':
      mmc_spl/board/samsung/smdkv310/start.S:137: undefined reference to `save_boot_params'
      
      Signed-off-by: default avatarChander Kashyap <chander.kashyap@linaro.org>
      Signed-off-by: default avatarMinkyu Kang <mk7.kang@samsung.com>
      ebbc84af
Loading