All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@s-opensource.com>
To: Linux Media Mailing List <linux-media@vger.kernel.org>
Cc: Mauro Carvalho Chehab <mchehab@s-opensource.com>,
	Mauro Carvalho Chehab <mchehab@infradead.org>
Subject: [PATCH 00/15] Fix another set of nitpick warnings
Date: Thu,  8 Sep 2016 18:37:26 -0300	[thread overview]
Message-ID: <cover.1473370390.git.mchehab@s-opensource.com> (raw)

After this series, there are only 3 warnings left:

./include/media/media-entity.h:1053: warning: No description found for parameter '...'
./include/media/v4l2-mem2mem.h:339: WARNING: c:type reference target not found: queue_init
./include/media/v4l2-subdev.h:424: WARNING: c:type reference target not found: v4l2_sliced_vbi_line

The first two seems to be related to some kernel-doc parser issue.

The last one is actually a documentation error: the documentation is pointing to a
struct that doesn't exist! Probably, it got renamed during development.

I'll look into those three remaining issues likely tomorrow.

Mauro Carvalho Chehab (15):
  [media] mc-core.rst: fix a warning about an internal routine
  [media] v4l2-mem2mem.h: move descriptions from .c file
  [media] v4l2-mem2mem.h: document function arguments
  [media] v4l2-mem2mem.h: document the public structures
  [media] v4l2-mem2mem.h: make kernel-doc parse v4l2-mem2mem.h again
  [media] conf_nitpick.py: ignore an opaque struct from v4l2-mem2mem.h
  [media] videobuf2-core.h: move function descriptions from c file
  [media] videobuf2-core.h: document enum vb2_memory
  [media] videobuf2-core.h: improve documentation
  [media] conf_nitpick.py: ignore C domain data used on vb2
  [media] videobuf2-v4l2.h: get kernel-doc tags from C file
  [media] videobuf2-v4l2.h: improve documentation
  [media] videobuf2-v4l2: document two helper functions
  [media] v4l2-flash-led-class.h: document v4l2_flash_ops
  [media] v4l2-subdev: fix some references to v4l2_dev

 Documentation/media/conf_nitpick.py      |   8 +
 drivers/media/v4l2-core/v4l2-mem2mem.c   | 128 +----------
 drivers/media/v4l2-core/videobuf2-core.c | 254 ---------------------
 drivers/media/v4l2-core/videobuf2-v4l2.c | 142 ------------
 include/media/media-devnode.h            |   3 +-
 include/media/v4l2-flash-led-class.h     |  15 +-
 include/media/v4l2-mem2mem.h             | 262 ++++++++++++++++++++--
 include/media/v4l2-subdev.h              |   8 +-
 include/media/videobuf2-core.h           | 372 ++++++++++++++++++++++++++++---
 include/media/videobuf2-v4l2.h           | 182 ++++++++++++++-
 10 files changed, 791 insertions(+), 583 deletions(-)

-- 
2.7.4



             reply	other threads:[~2016-09-08 21:37 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-08 21:37 Mauro Carvalho Chehab [this message]
2016-09-08 21:37 ` [PATCH 01/15] [media] mc-core.rst: fix a warning about an internal routine Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 02/15] [media] v4l2-mem2mem.h: move descriptions from .c file Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 03/15] [media] v4l2-mem2mem.h: document function arguments Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 04/15] [media] v4l2-mem2mem.h: document the public structures Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 05/15] [media] v4l2-mem2mem.h: make kernel-doc parse v4l2-mem2mem.h again Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 06/15] [media] conf_nitpick.py: ignore an opaque struct from v4l2-mem2mem.h Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 07/15] [media] videobuf2-core.h: move function descriptions from c file Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 08/15] [media] videobuf2-core.h: document enum vb2_memory Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 09/15] [media] videobuf2-core.h: improve documentation Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 10/15] [media] conf_nitpick.py: ignore C domain data used on vb2 Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 11/15] [media] videobuf2-v4l2.h: get kernel-doc tags from C file Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 12/15] [media] videobuf2-v4l2.h: improve documentation Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 13/15] [media] videobuf2-v4l2: document two helper functions Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 14/15] [media] v4l2-flash-led-class.h: document v4l2_flash_ops Mauro Carvalho Chehab
2016-09-08 21:37 ` [PATCH 15/15] [media] v4l2-subdev: fix some references to v4l2_dev Mauro Carvalho Chehab

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=cover.1473370390.git.mchehab@s-opensource.com \
    --to=mchehab@s-opensource.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@infradead.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 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.