All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/28] media: don't print error when allocating urb fails
@ 2016-08-11 21:03 Wolfram Sang
  2016-08-11 21:03 ` [PATCH 01/28] media: dvb-frontends: rtl2832_sdr: " Wolfram Sang
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Wolfram Sang @ 2016-08-11 21:03 UTC (permalink / raw)
  To: linux-usb; +Cc: Wolfram Sang, linux-media

This per-subsystem series is part of a tree wide cleanup. usb_alloc_urb() uses
kmalloc which already prints enough information on failure. So, let's simply
remove those "allocation failed" messages from drivers like we did already for
other -ENOMEM cases. gkh acked this approach when we talked about it at LCJ in
Tokyo a few weeks ago.


Wolfram Sang (28):
  media: dvb-frontends: rtl2832_sdr: don't print error when allocating
    urb fails
  media: radio: si470x: radio-si470x-usb: don't print error when
    allocating urb fails
  media: rc: imon: don't print error when allocating urb fails
  media: rc: redrat3: don't print error when allocating urb fails
  media: usb: airspy: airspy: don't print error when allocating urb
    fails
  media: usb: as102: as102_usb_drv: don't print error when allocating
    urb fails
  media: usb: au0828: au0828-video: don't print error when allocating
    urb fails
  media: usb: cpia2: cpia2_usb: don't print error when allocating urb
    fails
  media: usb: cx231xx: cx231xx-audio: don't print error when allocating
    urb fails
  media: usb: cx231xx: cx231xx-core: don't print error when allocating
    urb fails
  media: usb: cx231xx: cx231xx-vbi: don't print error when allocating
    urb fails
  media: usb: dvb-usb: dib0700_core: don't print error when allocating
    urb fails
  media: usb: em28xx: em28xx-audio: don't print error when allocating
    urb fails
  media: usb: em28xx: em28xx-core: don't print error when allocating urb
    fails
  media: usb: gspca: benq: don't print error when allocating urb fails
  media: usb: gspca: gspca: don't print error when allocating urb fails
  media: usb: gspca: konica: don't print error when allocating urb fails
  media: usb: hackrf: hackrf: don't print error when allocating urb
    fails
  media: usb: hdpvr: hdpvr-video: don't print error when allocating urb
    fails
  media: usb: msi2500: msi2500: don't print error when allocating urb
    fails
  media: usb: pwc: pwc-if: don't print error when allocating urb fails
  media: usb: s2255: s2255drv: don't print error when allocating urb
    fails
  media: usb: stk1160: stk1160-video: don't print error when allocating
    urb fails
  media: usb: stkwebcam: stk-webcam: don't print error when allocating
    urb fails
  media: usb: tm6000: tm6000-dvb: don't print error when allocating urb
    fails
  media: usb: tm6000: tm6000-video: don't print error when allocating
    urb fails
  media: usb: usbvision: usbvision-core: don't print error when
    allocating urb fails
  media: usb: zr364xx: zr364xx: don't print error when allocating urb
    fails

 drivers/media/dvb-frontends/rtl2832_sdr.c     |  1 -
 drivers/media/radio/si470x/radio-si470x-usb.c |  1 -
 drivers/media/rc/imon.c                       | 13 +++----------
 drivers/media/rc/redrat3.c                    |  4 +---
 drivers/media/usb/airspy/airspy.c             |  1 -
 drivers/media/usb/as102/as102_usb_drv.c       |  2 --
 drivers/media/usb/au0828/au0828-video.c       |  1 -
 drivers/media/usb/cpia2/cpia2_usb.c           |  1 -
 drivers/media/usb/cx231xx/cx231xx-audio.c     |  2 --
 drivers/media/usb/cx231xx/cx231xx-core.c      |  4 ----
 drivers/media/usb/cx231xx/cx231xx-vbi.c       |  2 --
 drivers/media/usb/dvb-usb/dib0700_core.c      |  4 +---
 drivers/media/usb/em28xx/em28xx-audio.c       |  1 -
 drivers/media/usb/em28xx/em28xx-core.c        |  1 -
 drivers/media/usb/gspca/benq.c                |  4 +---
 drivers/media/usb/gspca/gspca.c               |  4 +---
 drivers/media/usb/gspca/konica.c              |  4 +---
 drivers/media/usb/hackrf/hackrf.c             |  1 -
 drivers/media/usb/hdpvr/hdpvr-video.c         |  4 +---
 drivers/media/usb/msi2500/msi2500.c           |  1 -
 drivers/media/usb/pwc/pwc-if.c                |  1 -
 drivers/media/usb/s2255/s2255drv.c            |  9 ++-------
 drivers/media/usb/stk1160/stk1160-video.c     |  4 +---
 drivers/media/usb/stkwebcam/stk-webcam.c      |  4 +---
 drivers/media/usb/tm6000/tm6000-dvb.c         |  4 +---
 drivers/media/usb/tm6000/tm6000-video.c       |  1 -
 drivers/media/usb/usbvision/usbvision-core.c  |  5 +----
 drivers/media/usb/zr364xx/zr364xx.c           |  4 +---
 28 files changed, 16 insertions(+), 72 deletions(-)

-- 
2.8.1


^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2016-08-30 17:15 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-11 21:03 [PATCH 00/28] media: don't print error when allocating urb fails Wolfram Sang
2016-08-11 21:03 ` [PATCH 01/28] media: dvb-frontends: rtl2832_sdr: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 02/28] media: radio: si470x: radio-si470x-usb: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 03/28] media: rc: imon: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 04/28] media: rc: redrat3: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 05/28] media: usb: airspy: airspy: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 06/28] media: usb: as102: as102_usb_drv: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 07/28] media: usb: au0828: au0828-video: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 08/28] media: usb: cpia2: cpia2_usb: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 09/28] media: usb: cx231xx: cx231xx-audio: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 10/28] media: usb: cx231xx: cx231xx-core: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 11/28] media: usb: cx231xx: cx231xx-vbi: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 12/28] media: usb: dvb-usb: dib0700_core: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 13/28] media: usb: em28xx: em28xx-audio: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 14/28] media: usb: em28xx: em28xx-core: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 15/28] media: usb: gspca: benq: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 16/28] media: usb: gspca: gspca: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 17/28] media: usb: gspca: konica: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 18/28] media: usb: hackrf: hackrf: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 19/28] media: usb: hdpvr: hdpvr-video: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 20/28] media: usb: msi2500: msi2500: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 21/28] media: usb: pwc: pwc-if: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 22/28] media: usb: s2255: s2255drv: " Wolfram Sang
2016-08-11 21:03 ` [PATCH 23/28] media: usb: stk1160: stk1160-video: " Wolfram Sang
2016-08-11 21:04 ` [PATCH 24/28] media: usb: stkwebcam: stk-webcam: " Wolfram Sang
2016-08-11 21:04 ` [PATCH 25/28] media: usb: tm6000: tm6000-dvb: " Wolfram Sang
2016-08-11 21:04 ` [PATCH 26/28] media: usb: tm6000: tm6000-video: " Wolfram Sang
2016-08-11 21:04 ` [PATCH 27/28] media: usb: usbvision: usbvision-core: " Wolfram Sang
2016-08-11 21:04 ` [PATCH 28/28] media: usb: zr364xx: zr364xx: " Wolfram Sang
2016-08-30 17:14 ` [PATCH 00/28] media: " Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.