public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linux Media Mailing List <linux-media@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [GIT PULL for v5.10-rc6] vidtv driver fixes
Date: Fri, 27 Nov 2020 13:41:00 +0100	[thread overview]
Message-ID: <20201127134100.101be34e@coco.lan> (raw)

Hi Linus,

Please pull from:
  git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media tags/media/v5.10-3

For a series of fixes for the new the virtual digital TV driver (vidtv),
which is meant to help doing tests with the digital TV core and media
userspace apps and libraries.

They cover a series of issues I found on it, together with a few new things
in order to make it easier to detect problems at the DVB core.


Regards,
Mauro

The following changes since commit 9215f6bb4705ffe205885411394732bfc439dee0:

  media: venus: pm_helpers: Fix kernel module reload (2020-11-16 19:06:10 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media tags/media/v5.10-3

for you to fetch changes up to 44f28934af141149959c4e6495bb60c1903bda32:

  media: vidtv.rst: add kernel-doc markups (2020-11-26 08:05:24 +0100)

----------------------------------------------------------------
media fixes for v5.10-rc6

----------------------------------------------------------------
Daniel W. S. Almeida (6):
      media: vidtv: extract the initial CRC value to into a #define
      media: vidtv: psi: add a Network Information Table (NIT)
      media: vidtv: psi: Implement an Event Information Table (EIT)
      media: vidtv: psi: extract descriptor chaining code into a helper
      media: vidtv: Move s302m specific fields into encoder context
      media: vidtv: psi: fix missing assignments in while loops

Mauro Carvalho Chehab (30):
      media: vidtv: reorganize includes
      media: vidtv: add error checks
      media: vidtv: don't use recursive functions
      media: vidtv: fix the name of the program
      media: vidtv: fix the tone generator logic
      media: vidtv: fix some notes at the tone generator
      media: vidtv: avoid data copy when initializing the multiplexer
      media: vidtv: avoid copying data for PES structs
      media: vidtv: do some cleanups at the driver
      media: vidtv: remove some unused functions
      media: vidtv: pre-initialize mux arrays
      media: vidtv: cleanup null packet initialization logic
      media: vidtv: improve EIT data
      media: vidtv: fix the network ID range
      media: vidtv: properly fill EIT service_id
      media: vidtv: add a PID entry for the NIT table
      media: vidtv: fix service type
      media: vidtv: fix service_id at SDT table
      media: vidtv: add date to the current event
      media: vidtv: simplify PSI write function
      media: vidtv: simplify the crc writing logic
      media: vidtv: cleanup PSI descriptor write function
      media: vidtv: cleanup PSI table header function
      media: vidtv: cleanup PAT write function
      media: vidtv: cleanup PMT write table function
      media: vidtv: simplify SDT write function
      media: vidtv: simplify NIT write function
      media: vidtv: simplify EIT write function
      media: vidtv.rst: update vidtv documentation
      media: vidtv.rst: add kernel-doc markups

 Documentation/driver-api/media/drivers/vidtv.rst |  120 +-
 drivers/media/test-drivers/vidtv/vidtv_bridge.c  |  116 +-
 drivers/media/test-drivers/vidtv/vidtv_bridge.h  |    4 +-
 drivers/media/test-drivers/vidtv/vidtv_channel.c |  312 ++++-
 drivers/media/test-drivers/vidtv/vidtv_channel.h |   11 +-
 drivers/media/test-drivers/vidtv/vidtv_common.h  |    1 -
 drivers/media/test-drivers/vidtv/vidtv_demod.c   |    2 +-
 drivers/media/test-drivers/vidtv/vidtv_demod.h   |   11 +-
 drivers/media/test-drivers/vidtv/vidtv_encoder.h |    9 +-
 drivers/media/test-drivers/vidtv/vidtv_mux.c     |  248 ++--
 drivers/media/test-drivers/vidtv/vidtv_mux.h     |   21 +-
 drivers/media/test-drivers/vidtv/vidtv_pes.c     |  179 ++-
 drivers/media/test-drivers/vidtv/vidtv_pes.h     |    8 +-
 drivers/media/test-drivers/vidtv/vidtv_psi.c     | 1521 ++++++++++++++++------
 drivers/media/test-drivers/vidtv/vidtv_psi.h     |  282 +++-
 drivers/media/test-drivers/vidtv/vidtv_s302m.c   |  125 +-
 drivers/media/test-drivers/vidtv/vidtv_s302m.h   |    9 +-
 drivers/media/test-drivers/vidtv/vidtv_ts.c      |    5 +-
 drivers/media/test-drivers/vidtv/vidtv_ts.h      |    5 +-
 drivers/media/test-drivers/vidtv/vidtv_tuner.c   |    5 +-
 drivers/media/test-drivers/vidtv/vidtv_tuner.h   |    1 +
 21 files changed, 2182 insertions(+), 813 deletions(-)


             reply	other threads:[~2020-11-27 12:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-27 12:41 Mauro Carvalho Chehab [this message]
2020-11-27 20:05 ` [GIT PULL for v5.10-rc6] vidtv driver fixes pr-tracker-bot

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=20201127134100.101be34e@coco.lan \
    --to=mchehab+huawei@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox