linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL FOR v5.1] RC fixes
@ 2019-02-08 22:15 Sean Young
  2019-02-18 17:22 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 3+ messages in thread
From: Sean Young @ 2019-02-08 22:15 UTC (permalink / raw)
  To: linux-media

Hi Mauro,

Here are the last RC fixes for 5.1.

Thanks,

Sean

The following changes since commit 6fd369dd1cb65a032f1ab9227033ecb7b759656d:

  media: vimc: fill in bus_info in media_device_info (2019-02-07 12:38:59 -0500)

are available in the Git repository at:

  git://linuxtv.org/syoung/media_tree.git for-v5.1b

for you to fetch changes up to a82c3d00eaee0b18d3fe8e62bdde7e349d72ec97:

  media: smipcie: add universal ir capability (2019-02-08 21:56:54 +0000)

----------------------------------------------------------------
Matthias Reichl (1):
      media: rc: ir-rc6-decoder: enable toggle bit for Zotac remotes

Patrick Lerda (2):
      media: rc: rcmm decoder and encoder
      media: smipcie: add universal ir capability

 MAINTAINERS                              |   5 +
 drivers/media/pci/smipcie/smipcie-ir.c   | 132 ++++++----------
 drivers/media/pci/smipcie/smipcie.h      |   1 -
 drivers/media/rc/Kconfig                 |  13 ++
 drivers/media/rc/Makefile                |   1 +
 drivers/media/rc/ir-rc6-decoder.c        |   2 +
 drivers/media/rc/ir-rcmm-decoder.c       | 254 +++++++++++++++++++++++++++++++
 drivers/media/rc/rc-core-priv.h          |   5 +
 drivers/media/rc/rc-main.c               |   9 ++
 include/media/rc-map.h                   |  14 +-
 include/uapi/linux/lirc.h                |   6 +
 tools/include/uapi/linux/lirc.h          |  12 ++
 tools/testing/selftests/ir/ir_loopback.c |   9 ++
 13 files changed, 372 insertions(+), 91 deletions(-)
 create mode 100644 drivers/media/rc/ir-rcmm-decoder.c

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

* Re: [GIT PULL FOR v5.1] RC fixes
  2019-02-08 22:15 [GIT PULL FOR v5.1] RC fixes Sean Young
@ 2019-02-18 17:22 ` Mauro Carvalho Chehab
  2019-02-18 19:07   ` Sean Young
  0 siblings, 1 reply; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2019-02-18 17:22 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-media

Em Fri, 8 Feb 2019 22:15:22 +0000
Sean Young <sean@mess.org> escreveu:

> Hi Mauro,
> 
> Here are the last RC fixes for 5.1.
> 
> Thanks,
> 
> Sean
> 
> The following changes since commit 6fd369dd1cb65a032f1ab9227033ecb7b759656d:
> 
>   media: vimc: fill in bus_info in media_device_info (2019-02-07 12:38:59 -0500)
> 
> are available in the Git repository at:
> 
>   git://linuxtv.org/syoung/media_tree.git for-v5.1b
> 
> for you to fetch changes up to a82c3d00eaee0b18d3fe8e62bdde7e349d72ec97:
> 
>   media: smipcie: add universal ir capability (2019-02-08 21:56:54 +0000)
> 
> ----------------------------------------------------------------
> Matthias Reichl (1):
>       media: rc: ir-rc6-decoder: enable toggle bit for Zotac remotes
> 
> Patrick Lerda (2):
>       media: rc: rcmm decoder and encoder

It is now producing a lot documentation warnings:

$ make SPHINXOPTS="-j5" DOCBOOKS="" SPHINXDIRS=media SPHINX_CONF="conf.py" htmldocs
Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm12 (if the link has no caption the label must precede a section header)      
Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm24 (if the link has no caption the label must precede a section header)
Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm32 (if the link has no caption the label must precede a section header)
Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm12 (if the link has no caption the label must precede a section header)
Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm24 (if the link has no caption the label must precede a section header)
Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm32 (if the link has no caption the label must precede a section header)

Please fix.

Regards,
Mauro


Thanks,
Mauro

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

* Re: [GIT PULL FOR v5.1] RC fixes
  2019-02-18 17:22 ` Mauro Carvalho Chehab
@ 2019-02-18 19:07   ` Sean Young
  0 siblings, 0 replies; 3+ messages in thread
From: Sean Young @ 2019-02-18 19:07 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On Mon, Feb 18, 2019 at 02:22:52PM -0300, Mauro Carvalho Chehab wrote:
> Em Fri, 8 Feb 2019 22:15:22 +0000
> Sean Young <sean@mess.org> escreveu:
> 
> > Hi Mauro,
> > 
> > Here are the last RC fixes for 5.1.
> > 
> > Thanks,
> > 
> > Sean
> > 
> > The following changes since commit 6fd369dd1cb65a032f1ab9227033ecb7b759656d:
> > 
> >   media: vimc: fill in bus_info in media_device_info (2019-02-07 12:38:59 -0500)
> > 
> > are available in the Git repository at:
> > 
> >   git://linuxtv.org/syoung/media_tree.git for-v5.1b
> > 
> > for you to fetch changes up to a82c3d00eaee0b18d3fe8e62bdde7e349d72ec97:
> > 
> >   media: smipcie: add universal ir capability (2019-02-08 21:56:54 +0000)
> > 
> > ----------------------------------------------------------------
> > Matthias Reichl (1):
> >       media: rc: ir-rc6-decoder: enable toggle bit for Zotac remotes
> > 
> > Patrick Lerda (2):
> >       media: rc: rcmm decoder and encoder
> 
> It is now producing a lot documentation warnings:
> 
> $ make SPHINXOPTS="-j5" DOCBOOKS="" SPHINXDIRS=media SPHINX_CONF="conf.py" htmldocs
> Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm12 (if the link has no caption the label must precede a section header)      
> Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm24 (if the link has no caption the label must precede a section header)
> Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm32 (if the link has no caption the label must precede a section header)
> Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm12 (if the link has no caption the label must precede a section header)
> Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm24 (if the link has no caption the label must precede a section header)
> Documentation/output/lirc.h.rst:6: WARNING: undefined label: rc-proto-rcmm32 (if the link has no caption the label must precede a section header)
> 
> Please fix.

Sorry for missing that. I'll post a v2 of the pull request shortly.

Thanks,
Sean

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

end of thread, other threads:[~2019-02-18 19:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-08 22:15 [GIT PULL FOR v5.1] RC fixes Sean Young
2019-02-18 17:22 ` Mauro Carvalho Chehab
2019-02-18 19:07   ` Sean Young

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).