1. 17 11月, 2016 13 次提交
  2. 09 7月, 2016 1 次提交
  3. 03 6月, 2016 1 次提交
  4. 10 5月, 2016 1 次提交
    • A
      [media] exynos-gsc: avoid build warning without CONFIG_OF · aff093d4
      Arnd Bergmann 提交于
      When building the exynos-gsc driver with CONFIG_OF disabled, we get
      a warning about an out-of-bounds access:
      
      drivers/media/platform/exynos-gsc/gsc-core.c: In function 'gsc_probe':
      drivers/media/platform/exynos-gsc/gsc-core.c:1078:34: error: array subscript is above array bounds [-Werror=array-bounds]
      
      This is harmless because the driver will never be used without CONFIG_OF,
      but it's better to avoid the warning anyway. Checking the return value
      of of_alias_get_id() for an error condition is probably a good idea
      anyway, and it makes sure the compiler can verify that we don't get
      into that situation.
      
      Fixes: 26a7ed9c ("[media] exynos-gsc: remove an always false condition")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
      aff093d4
  5. 14 4月, 2016 2 次提交
  6. 12 5月, 2015 1 次提交
  7. 04 12月, 2014 1 次提交
  8. 15 11月, 2014 1 次提交
  9. 20 10月, 2014 1 次提交
  10. 27 8月, 2014 2 次提交
    • M
      [media] gsc: Use %pad for dma_addr_t · 286da990
      Mauro Carvalho Chehab 提交于
      drivers/media/platform/exynos-gsc/gsc-core.c:855:2: note: in expansion of macro 'pr_debug'
        pr_debug("ADDR: y= 0x%X  cb= 0x%X cr= 0x%X ret= %d",
        ^
      include/linux/dynamic_debug.h:64:16: warning: format '%X' expects argument of type 'unsigned int', but argument 4 has type 'dma
      _addr_t' [-Wformat=]
        static struct _ddebug  __aligned(8)   \
                      ^
      Signed-off-by: NMauro Carvalho Chehab <m.chehab@samsung.com>
      286da990
    • M
      [media] gsc-core: Remove useless test · cff56213
      Mauro Carvalho Chehab 提交于
      drivers/media/platform/exynos-gsc/gsc-core.c: In function 'gsc_probe':
      drivers/media/platform/exynos-gsc/gsc-core.c:1089:2: warning: comparison is alw
      ays false due to limited range of data type [-Wtype-limits]
        if (gsc->id < 0 || gsc->id >= drv_data->num_entities) {
        ^
      
      gsc->id is declared as u16, so it should always be a positive
      value.
      Signed-off-by: NMauro Carvalho Chehab <m.chehab@samsung.com>
      cff56213
  11. 03 9月, 2013 1 次提交
  12. 18 8月, 2013 1 次提交
  13. 13 6月, 2013 1 次提交
  14. 22 3月, 2013 1 次提交
  15. 06 2月, 2013 1 次提交
  16. 26 1月, 2013 1 次提交
  17. 04 1月, 2013 1 次提交
    • G
      Drivers: media: remove __dev* attributes. · 4c62e976
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitdata,
      __devinitconst, and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      4c62e976
  18. 21 12月, 2012 5 次提交
  19. 27 10月, 2012 1 次提交
  20. 26 10月, 2012 2 次提交
  21. 03 10月, 2012 1 次提交