1. 30 Apr, 2015 5 commits
  2. 27 Apr, 2015 33 commits
  3. 22 Apr, 2015 2 commits
    • Mark Brown's avatar
      video: vgacon: Don't build on arm64 · 1d458a6c
      Mark Brown authored
      commit ee23794b upstream.
      
      arm64 is unlikely to have a VGA console and does not export screen_info
      causing build failures if the driver is build, for example in all*config.
      Add a dependency on !ARM64 to prevent this.
      
      This list is getting quite long, it may be easier to depend on a symbol
      which architectures that do support the driver can select.
      Signed-off-by: default avatarMark Brown <broonie@linaro.org>
      [tomi.valkeinen@ti.com: moved && to first modified line]
      Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
      Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
      1d458a6c
    • Chen Gang's avatar
      [media] drivers: media: usb: b2c2: use usb_*_coherent() instead of... · 147ff1a3
      Chen Gang authored
      [media] drivers: media: usb: b2c2: use usb_*_coherent() instead of pci_*_consistent() in flexcop-usb.c
      
      commit 6c7e3469 upstream.
      
      Some architectures do not support PCI, but still support USB, so need
      let our usb driver try to use usb_* instead of pci_* to support these
      architectures, or can not pass compiling.
      The related error (with allmodconfig for arc):
          CC [M]  drivers/media/usb/b2c2/flexcop-usb.o
        drivers/media/usb/b2c2/flexcop-usb.c: In function ‘flexcop_usb_transfer_exit’:
        drivers/media/usb/b2c2/flexcop-usb.c:393: error: implicit declaration of function ‘pci_free_consistent’
        drivers/media/usb/b2c2/flexcop-usb.c: In function ‘flexcop_usb_transfer_init’:
        drivers/media/usb/b2c2/flexcop-usb.c:410: error: implicit declaration of function ‘pci_alloc_consistent’
      Signed-off-by: default avatarChen Gang <gang.chen@asianux.com>
      Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
      Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
      147ff1a3