1. 21 Apr, 2020 37 commits
  2. 20 Apr, 2020 3 commits
    • Mauro Carvalho Chehab's avatar
      media: usbvision: depends on USB · e6940c03
      Mauro Carvalho Chehab authored
      When built with:
      	CONFIG_USB=m
      	CONFIG_VIDEO_USBVISION=y
      
      It causes ld errors:
      
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_write_reg_irq':
      usbvision-core.c:(.text+0x8a4): undefined reference to `usb_submit_urb'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_isoc_irq':
      usbvision-core.c:(.text+0x2ee8): undefined reference to `usb_submit_urb'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_read_reg':
      usbvision-core.c:(.text+0x30ad): undefined reference to `usb_control_msg'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_write_reg':
      usbvision-core.c:(.text+0x3178): undefined reference to `usb_control_msg'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_set_output':
      usbvision-core.c:(.text+0x344e): undefined reference to `usb_control_msg'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_set_input':
      usbvision-core.c:(.text+0x3b9b): undefined reference to `usb_control_msg'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_setup':
      usbvision-core.c:(.text+0x4009): undefined reference to `usb_control_msg'
      ld: drivers/staging/media/usbvision/usbvision-core.o:usbvision-core.c:(.text+0x417f): more undefined references to `usb_control_msg' follow
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_set_alternate':
      usbvision-core.c:(.text+0x4518): undefined reference to `usb_set_interface'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_init_isoc':
      usbvision-core.c:(.text+0x4673): undefined reference to `usb_alloc_urb'
      ld: usbvision-core.c:(.text+0x46a5): undefined reference to `usb_alloc_coherent'
      ld: usbvision-core.c:(.text+0x4765): undefined reference to `usb_submit_urb'
      ld: drivers/staging/media/usbvision/usbvision-core.o: in function `usbvision_stop_isoc':
      usbvision-core.c:(.text+0x4837): undefined reference to `usb_kill_urb'
      ld: usbvision-core.c:(.text+0x485f): undefined reference to `usb_free_coherent'
      ld: usbvision-core.c:(.text+0x4874): undefined reference to `usb_free_urb'
      ld: usbvision-core.c:(.text+0x48f1): undefined reference to `usb_set_interface'
      ld: drivers/staging/media/usbvision/usbvision-video.o: in function `usbvision_release':
      usbvision-video.c:(.text+0x1a8a): undefined reference to `usb_free_urb'
      ld: drivers/staging/media/usbvision/usbvision-video.o: in function `usbvision_disconnect':
      usbvision-video.c:(.text+0x1b74): undefined reference to `usb_put_dev'
      ld: drivers/staging/media/usbvision/usbvision-video.o: in function `usbvision_radio_close':
      usbvision-video.c:(.text+0x1c89): undefined reference to `usb_set_interface'
      ld: drivers/staging/media/usbvision/usbvision-video.o: in function `usbvision_probe':
      usbvision-video.c:(.text+0x1e4b): undefined reference to `usb_get_dev'
      ld: usbvision-video.c:(.text+0x20e1): undefined reference to `usb_alloc_urb'
      ld: usbvision-video.c:(.text+0x2797): undefined reference to `usb_put_dev'
      ld: drivers/staging/media/usbvision/usbvision-video.o: in function `usbvision_exit':
      usbvision-video.c:(.exit.text+0x37): undefined reference to `usb_deregister'
      ld: drivers/staging/media/usbvision/usbvision-video.o: in function `usbvision_init':
      usbvision-video.c:(.init.text+0xf9): undefined reference to `usb_register_driver'
      ld: drivers/staging/media/usbvision/usbvision-i2c.o: in function `usbvision_i2c_write':
      usbvision-i2c.c:(.text+0x2f4): undefined reference to `usb_control_msg'
      Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
      Acked-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
      e6940c03
    • Mauro Carvalho Chehab's avatar
      media: staging: rkisp1 Kconfig: depends on OF · e10daad5
      Mauro Carvalho Chehab authored
      building it with a random config causes a warning:
      
      WARNING: unmet direct dependencies detected for PHY_ROCKCHIP_DPHY_RX0
        Depends on [n]: STAGING [=y] && STAGING_MEDIA [=y] && MEDIA_SUPPORT [=y] && (ARCH_ROCKCHIP || COMPILE_TEST [=y]) && OF [=n]
        Selected by [y]:
        - VIDEO_ROCKCHIP_ISP1 [=y] && STAGING [=y] && STAGING_MEDIA [=y] && MEDIA_SUPPORT [=y] && VIDEO_V4L2 [=y] && (ARCH_ROCKCHIP || COMPILE_TEST [=y])
      Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
      e10daad5
    • Mauro Carvalho Chehab's avatar
      Merge tag 'v5.7-rc2' into patchwork · 9e04ff70
      Mauro Carvalho Chehab authored
      Linux 5.7-rc2
      
      * tag 'v5.7-rc2': (331 commits)
        Linux 5.7-rc2
        mm: Fix MREMAP_DONTUNMAP accounting on VMA merge
        xattr.h: Replace zero-length array with flexible-array member
        uapi: linux: fiemap.h: Replace zero-length array with flexible-array member
        uapi: linux: dlm_device.h: Replace zero-length array with flexible-array member
        tpm_eventlog.h: Replace zero-length array with flexible-array member
        ti_wilink_st.h: Replace zero-length array with flexible-array member
        swap.h: Replace zero-length array with flexible-array member
        skbuff.h: Replace zero-length array with flexible-array member
        sched: topology.h: Replace zero-length array with flexible-array member
        rslib.h: Replace zero-length array with flexible-array member
        rio.h: Replace zero-length array with flexible-array member
        posix_acl.h: Replace zero-length array with flexible-array member
        platform_data: wilco-ec.h: Replace zero-length array with flexible-array member
        memcontrol.h: Replace zero-length array with flexible-array member
        list_lru.h: Replace zero-length array with flexible-array member
        lib: cpu_rmap: Replace zero-length array with flexible-array member
        irq.h: Replace zero-length array with flexible-array member
        ihex.h: Replace zero-length array with flexible-array member
        igmp.h: Replace zero-length array with flexible-array member
        ...
      9e04ff70