All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Grzeschik <m.grzeschik@pengutronix.de>
To: linux-media@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, stoth@kernellabs.com,
	laurent.pinchart@ideasonboard.com, kernel@pengutronix.de,
	mchehab@kernel.org, davem@davemloft.net
Subject: [PATCH v2 0/2] media: Startech usb2hdcapm hdmi2usb framegrabber support
Date: Mon, 26 Nov 2018 19:09:35 +0100	[thread overview]
Message-ID: <20181126180937.32535-1-m.grzeschik@pengutronix.de> (raw)

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


             reply	other threads:[~2018-11-26 18:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-26 18:09 Michael Grzeschik [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181126180937.32535-1-m.grzeschik@pengutronix.de \
    --to=m.grzeschik@pengutronix.de \
    --cc=davem@davemloft.net \
    --cc=kernel@pengutronix.de \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=stoth@kernellabs.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.