All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] media: Startech usb2hdcapm hdmi2usb framegrabber support
@ 2018-11-26 18:09 Michael Grzeschik
  2018-11-26 18:09 ` [PATCH v2 1/2] media: mst3367: add support for mstar mst3367 HDMI RX Michael Grzeschik
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Michael Grzeschik @ 2018-11-26 18:09 UTC (permalink / raw)
  To: linux-media; +Cc: linux-kernel, stoth, laurent.pinchart, kernel, mchehab, davem

This series adds support for the Startech usb2hdcapm framegrabber. The
code is based on the external kernel module code from Steven Toth's
github page:

https://github.com/stoth68000/hdcapm/

We applied checkpatch.pl --strict and cleaned up the 80 character
length, whitespace issues and replaced simple printks with appropriate
v4l2_* or dev_* helpers, used WARN_ON instead of BUG and changed all
errors and warnings checkpatch was complaining about.

Steven Toth (2):
  media: mst3367: add support for mstar mst3367 HDMI RX
  media: hdcapm: add support for usb2hdcapm hdmi2usb framegrabber from
    startech

 drivers/media/i2c/Kconfig                    |   10 +
 drivers/media/i2c/Makefile                   |    1 +
 drivers/media/i2c/mst3367.c                  | 1104 ++++++++++++++++++
 drivers/media/usb/Kconfig                    |    1 +
 drivers/media/usb/Makefile                   |    1 +
 drivers/media/usb/hdcapm/Kconfig             |   11 +
 drivers/media/usb/hdcapm/Makefile            |    3 +
 drivers/media/usb/hdcapm/hdcapm-buffer.c     |  230 ++++
 drivers/media/usb/hdcapm/hdcapm-compressor.c |  782 +++++++++++++
 drivers/media/usb/hdcapm/hdcapm-core.c       |  743 ++++++++++++
 drivers/media/usb/hdcapm/hdcapm-i2c.c        |  332 ++++++
 drivers/media/usb/hdcapm/hdcapm-reg.h        |  111 ++
 drivers/media/usb/hdcapm/hdcapm-video.c      |  665 +++++++++++
 drivers/media/usb/hdcapm/hdcapm.h            |  283 +++++
 include/media/i2c/mst3367.h                  |   29 +
 15 files changed, 4306 insertions(+)
 create mode 100644 drivers/media/i2c/mst3367.c
 create mode 100644 drivers/media/usb/hdcapm/Kconfig
 create mode 100644 drivers/media/usb/hdcapm/Makefile
 create mode 100644 drivers/media/usb/hdcapm/hdcapm-buffer.c
 create mode 100644 drivers/media/usb/hdcapm/hdcapm-compressor.c
 create mode 100644 drivers/media/usb/hdcapm/hdcapm-core.c
 create mode 100644 drivers/media/usb/hdcapm/hdcapm-i2c.c
 create mode 100644 drivers/media/usb/hdcapm/hdcapm-reg.h
 create mode 100644 drivers/media/usb/hdcapm/hdcapm-video.c
 create mode 100644 drivers/media/usb/hdcapm/hdcapm.h
 create mode 100644 include/media/i2c/mst3367.h

-- 
2.19.1


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

end of thread, other threads:[~2018-11-27  7:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26 18:09 [PATCH v2 0/2] media: Startech usb2hdcapm hdmi2usb framegrabber support Michael Grzeschik
2018-11-26 18:09 ` [PATCH v2 1/2] media: mst3367: add support for mstar mst3367 HDMI RX Michael Grzeschik
2018-11-26 18:09 ` [PATCH v2 2/2] media: hdcapm: add support for usb2hdcapm hdmi2usb framegrabber from startech Michael Grzeschik
2018-11-27  7:56 ` [PATCH v2 0/2] media: Startech usb2hdcapm hdmi2usb framegrabber support Hans Verkuil

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.