1. 02 2月, 2015 1 次提交
  2. 23 12月, 2014 1 次提交
  3. 02 12月, 2014 1 次提交
  4. 05 11月, 2014 1 次提交
  5. 29 10月, 2014 4 次提交
  6. 26 9月, 2014 3 次提交
    • M
      [media] s5p-mfc: Fix several printk warnings · 03ce7816
      Mauro Carvalho Chehab 提交于
      drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c:192:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘dma_addr_t’ [-Wformat=]
      drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c:196:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘dma_addr_t’ [-Wformat=]
      drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c:196:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘dma_addr_t’ [-Wformat=]
      drivers/media/platform/s5p-mfc/s5p_mfc_dec.c:1206:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      drivers/media/platform/s5p-mfc/s5p_mfc_dec.c:1206:32: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1757:3: warning: format ‘%zx’ expects argument of type ‘size_t’, but argument 6 has type ‘dma_addr_t’ [-Wformat=]
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1879:3: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘size_t’ [-Wformat=]
      drivers/media/platform/s5p-mfc/s5p_mfc_dec.c:1206:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      drivers/media/platform/s5p-mfc/s5p_mfc_dec.c:1206:32: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
      03ce7816
    • A
      [media] s5p-mfc: fix enum_fmt for s5p-mfc · 7e8fe13d
      ayaka 提交于
      As the s5p-mfc is a driver which use  multiplanar api, so the
      vidioc_enum_fmt_vid serial of ioctl should only for
      multiplanar, non-multiplanar shouldn't be implemented at all.
      Signed-off-by: Nayaka <ayaka@soulik.info>
      Signed-off-by: NKamil Debski <k.debski@samsung.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
      7e8fe13d
    • K
      [media] s5p-mfc: Fix sparse errors in the MFC driver · e2c3be2a
      Kamil Debski 提交于
      The following error: "error: incompatible types in conditional expression
      (different base types)" was reported multiple times for the s5p-mfc
      driver. This error was caused by two macro definitions - s5p_mfc_hw_call
      (in s5p_mfc_common.h) and WRITEL (in s5p_mfc_opr_v6.c).
      
      In the former case the macro assumed that all ops return a value, but some
      ops return void. The solution to this problem was the addition of a
      s5p_mfc_hw_call_void macro.
      
      In the latter case the macro used the ?: construction to check whether
      the address is non zero. This is not necessary after the driver left the
      development and debugging cycle, so the READL and WRITEL macros were
      removed.
      Signed-off-by: NKamil Debski <k.debski@samsung.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
      e2c3be2a
  7. 27 8月, 2014 1 次提交
    • M
      [media] s5p_mfc: get rid of several warnings · 8492ec69
      Mauro Carvalho Chehab 提交于
      drivers/media/platform/s5p-mfc/s5p_mfc_dec.c:826:5: warning: no previous prototype for 'vidioc_decoder_cmd' [-Wmissing-prototypes]
       int vidioc_decoder_cmd(struct file *file, void *priv,
           ^
      drivers/media/platform/s5p-mfc/s5p_mfc.c: In function 's5p_mfc_runtime_resume':
      drivers/media/platform/s5p-mfc/s5p_mfc.c:1314:6: warning: variable 'pre_power' set but not used [-Wunused-but-set-variable]
        int pre_power;
            ^
      drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v5.c:163:25: warning: no previous prototype for 's5p_mfc_init_hw_cmds_v5' [-Wmissing-prototypes]
       struct s5p_mfc_hw_cmds *s5p_mfc_init_hw_cmds_v5(void)
                               ^
      drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v6.c:156:25: warning: no previous prototype for 's5p_mfc_init_hw_cmds_v6' [-Wmissing-prototypes]
       struct s5p_mfc_hw_cmds *s5p_mfc_init_hw_cmds_v6(void)
                               ^
      drivers/media/platform/s5p-mfc/s5p_mfc_opr_v5.c: In function 's5p_mfc_run_dec_frame':
      drivers/media/platform/s5p-mfc/s5p_mfc_opr_v5.c:1189:15: warning: variable 'index' set but not used [-Wunused-but-set-variable]
        unsigned int index;
                     ^
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c: In function 'cleanup_ref_queue':
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:742:27: warning: variable 'mb_c_addr' set but not used [-Wunused-but-set-variable]
        unsigned long mb_y_addr, mb_c_addr;
                                 ^
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:742:16: warning: variable 'mb_y_addr' set but not used [-Wunused-but-set-variable]
        unsigned long mb_y_addr, mb_c_addr;
                      ^
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c: At top level:
      drivers/media/platform/s5p-mfc/s5p_mfc_enc.c:1684:5: warning: no previous prototype for 'vidioc_encoder_cmd' [-Wmissing-prototypes]
       int vidioc_encoder_cmd(struct file *file, void *priv,
           ^
      Signed-off-by: NMauro Carvalho Chehab <m.chehab@samsung.com>
      8492ec69
  8. 24 5月, 2014 5 次提交
  9. 23 4月, 2014 1 次提交
  10. 01 3月, 2014 1 次提交
  11. 13 1月, 2014 2 次提交
  12. 07 1月, 2014 1 次提交
  13. 29 10月, 2013 1 次提交
  14. 03 9月, 2013 1 次提交
  15. 18 8月, 2013 3 次提交
  16. 26 7月, 2013 1 次提交
  17. 04 6月, 2013 3 次提交
  18. 22 3月, 2013 1 次提交
  19. 06 2月, 2013 1 次提交
  20. 26 11月, 2012 1 次提交
  21. 26 10月, 2012 1 次提交
  22. 06 10月, 2012 4 次提交
  23. 03 10月, 2012 1 次提交