All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL FINAL 00/21] misc DTV stuff for 3.18
@ 2014-08-22 10:57 Antti Palosaari
  2014-08-22 10:57 ` [GIT PULL FINAL 01/21] si2168: clean logging Antti Palosaari
                   ` (22 more replies)
  0 siblings, 23 replies; 34+ messages in thread
From: Antti Palosaari @ 2014-08-22 10:57 UTC (permalink / raw)
  To: linux-media; +Cc: Nibble Max, Olli Salonen, Evgeny Plehov, Antti Palosaari

Moikka
I picked these from patchwork and this is just final review before
PULL request I will send very shortly. I don't expect any change
requests at this late, without a very good reason :)

However, I could add some tags until Mauro PULLs to master.

regards
Antti

Antti Palosaari (10):
  dvb-usb-v2: remove dvb_usb_device NULL check
  msi2500: remove unneeded local pointer on msi2500_isoc_init()
  m88ts2022: fix 32bit overflow on filter calc
  m88ts2022: fix coding style issues
  m88ts2022: rename device state (priv => s)
  m88ts2022: clean up logging
  m88ts2022: convert to RegMap I2C API
  m88ts2022: change parameter type of m88ts2022_cmd
  m88ds3103: change .set_voltage() implementation
  m88ds3103: fix coding style issues

CrazyCat (1):
  si2168: DVB-T2 PLP selection implemented

Olli Salonen (9):
  si2168: clean logging
  si2157: clean logging
  si2168: add ts_mode setting and move to si2168_init
  em28xx: add ts mode setting for PCTV 292e
  cxusb: add ts mode setting for TechnoTrend CT2-4400
  sp2: Add I2C driver for CIMaX SP2 common interface module
  cxusb: Add support for TechnoTrend TT-connect CT2-4650 CI
  cxusb: Add read_mac_address for TT CT2-4400 and CT2-4650
  si2157: Add support for delivery system SYS_ATSC

nibble.max (1):
  m88ds3103: implement set voltage and TS clock

 drivers/media/dvb-core/dvb-usb-ids.h       |   1 +
 drivers/media/dvb-frontends/Kconfig        |   7 +
 drivers/media/dvb-frontends/Makefile       |   1 +
 drivers/media/dvb-frontends/m88ds3103.c    | 101 +++++--
 drivers/media/dvb-frontends/m88ds3103.h    |  35 ++-
 drivers/media/dvb-frontends/si2168.c       | 101 ++++---
 drivers/media/dvb-frontends/si2168.h       |   6 +
 drivers/media/dvb-frontends/si2168_priv.h  |   1 +
 drivers/media/dvb-frontends/sp2.c          | 441 +++++++++++++++++++++++++++++
 drivers/media/dvb-frontends/sp2.h          |  53 ++++
 drivers/media/dvb-frontends/sp2_priv.h     |  50 ++++
 drivers/media/tuners/Kconfig               |   1 +
 drivers/media/tuners/m88ts2022.c           | 355 +++++++++--------------
 drivers/media/tuners/m88ts2022_priv.h      |   5 +-
 drivers/media/tuners/si2157.c              |  55 ++--
 drivers/media/usb/dvb-usb-v2/dvb_usb_urb.c |   2 +-
 drivers/media/usb/dvb-usb/Kconfig          |   2 +-
 drivers/media/usb/dvb-usb/cxusb.c          | 128 ++++++++-
 drivers/media/usb/dvb-usb/cxusb.h          |   4 +
 drivers/media/usb/em28xx/em28xx-dvb.c      |   5 +-
 drivers/media/usb/msi2500/msi2500.c        |   9 +-
 21 files changed, 1022 insertions(+), 341 deletions(-)
 create mode 100644 drivers/media/dvb-frontends/sp2.c
 create mode 100644 drivers/media/dvb-frontends/sp2.h
 create mode 100644 drivers/media/dvb-frontends/sp2_priv.h

-- 
http://palosaari.fi/


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

end of thread, other threads:[~2014-09-03 11:47 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-22 10:57 [GIT PULL FINAL 00/21] misc DTV stuff for 3.18 Antti Palosaari
2014-08-22 10:57 ` [GIT PULL FINAL 01/21] si2168: clean logging Antti Palosaari
2014-08-22 11:47   ` Mauro Carvalho Chehab
2014-08-22 12:13     ` Antti Palosaari
2014-08-22 12:28       ` Mauro Carvalho Chehab
2014-08-22 12:50         ` Antti Palosaari
2014-08-22 13:41           ` Mauro Carvalho Chehab
2014-08-22 10:57 ` [GIT PULL FINAL 02/21] si2157: " Antti Palosaari
2014-08-22 10:57 ` [GIT PULL FINAL 03/21] m88ds3103: implement set voltage and TS clock Antti Palosaari
2014-08-22 10:57 ` [GIT PULL FINAL 04/21] si2168: add ts_mode setting and move to si2168_init Antti Palosaari
2014-08-22 10:57 ` [GIT PULL FINAL 05/21] em28xx: add ts mode setting for PCTV 292e Antti Palosaari
2014-08-22 10:57 ` [GIT PULL FINAL 06/21] cxusb: add ts mode setting for TechnoTrend CT2-4400 Antti Palosaari
2014-08-22 10:57 ` [GIT PULL FINAL 07/21] sp2: Add I2C driver for CIMaX SP2 common interface module Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 08/21] cxusb: Add support for TechnoTrend TT-connect CT2-4650 CI Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 09/21] cxusb: Add read_mac_address for TT CT2-4400 and CT2-4650 Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 10/21] si2168: DVB-T2 PLP selection implemented Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 11/21] si2157: Add support for delivery system SYS_ATSC Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 12/21] dvb-usb-v2: remove dvb_usb_device NULL check Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 13/21] msi2500: remove unneeded local pointer on msi2500_isoc_init() Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 14/21] m88ts2022: fix 32bit overflow on filter calc Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 15/21] m88ts2022: fix coding style issues Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 16/21] m88ts2022: rename device state (priv => s) Antti Palosaari
2014-09-02 18:51   ` Mauro Carvalho Chehab
2014-09-03  2:26     ` Antti Palosaari
2014-09-03 10:38       ` Mauro Carvalho Chehab
2014-09-03 10:50         ` Antti Palosaari
2014-09-03 11:47           ` Mauro Carvalho Chehab
2014-08-22 10:58 ` [GIT PULL FINAL 17/21] m88ts2022: clean up logging Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 18/21] m88ts2022: convert to RegMap I2C API Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 19/21] m88ts2022: change parameter type of m88ts2022_cmd Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 20/21] m88ds3103: change .set_voltage() implementation Antti Palosaari
2014-08-22 10:58 ` [GIT PULL FINAL 21/21] m88ds3103: fix coding style issues Antti Palosaari
2014-08-22 11:08 ` [GIT PULL FINAL 00/21] misc DTV stuff for 3.18 Antti Palosaari
2014-09-02 18:59 ` Mauro Carvalho Chehab

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.