tree: git://linuxtv.org/media_tree.git master head: c044170fcfca3783f7dd8eb69ff8b06d66fad5d8 commit: 1f862a68df2449bc7b1cf78dce616891697b4bdf [879/885] [media] dvb_frontend: move kref to struct dvb_frontend reproduce: make htmldocs; make DOCBOOKS='' pdfdocs All warnings (new ones prefixed by >>): make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. include/linux/init.h:1: warning: no structured comments found include/linux/workqueue.h:392: warning: No description found for parameter '...' include/linux/workqueue.h:392: warning: Excess function parameter 'args' description in 'alloc_workqueue' include/linux/workqueue.h:413: warning: No description found for parameter '...' include/linux/workqueue.h:413: warning: Excess function parameter 'args' description in 'alloc_ordered_workqueue' include/linux/kthread.h:26: warning: No description found for parameter '...' kernel/sys.c:1: warning: no structured comments found drivers/dma-buf/seqno-fence.c:1: warning: no structured comments found include/linux/fence-array.h:61: warning: No description found for parameter 'fence' include/sound/core.h:324: warning: No description found for parameter '...' include/sound/core.h:335: warning: No description found for parameter '...' include/sound/core.h:388: warning: No description found for parameter '...' drivers/media/dvb-core/dvb_frontend.h:274: warning: No description found for parameter 'fe' >> drivers/media/dvb-core/dvb_frontend.h:684: warning: No description found for parameter 'refcount' include/media/media-entity.h:1054: warning: No description found for parameter '...' include/net/mac80211.h:3207: ERROR: Unexpected indentation. include/net/mac80211.h:3210: WARNING: Block quote ends without a blank line; unexpected unindent. include/net/mac80211.h:3212: ERROR: Unexpected indentation. include/net/mac80211.h:3213: WARNING: Block quote ends without a blank line; unexpected unindent. include/net/mac80211.h:1772: ERROR: Unexpected indentation. include/net/mac80211.h:1776: WARNING: Block quote ends without a blank line; unexpected unindent. kernel/sched/fair.c:7259: WARNING: Inline emphasis start-string without end-string. kernel/time/timer.c:1240: ERROR: Unexpected indentation. kernel/time/timer.c:1242: ERROR: Unexpected indentation. kernel/time/timer.c:1243: WARNING: Block quote ends without a blank line; unexpected unindent. include/linux/wait.h:121: WARNING: Block quote ends without a blank line; unexpected unindent. include/linux/wait.h:124: ERROR: Unexpected indentation. include/linux/wait.h:126: WARNING: Block quote ends without a blank line; unexpected unindent. kernel/time/hrtimer.c:1021: WARNING: Block quote ends without a blank line; unexpected unindent. kernel/signal.c:317: WARNING: Inline literal start-string without end-string. drivers/base/firmware_class.c:1348: WARNING: Bullet list ends without a blank line; unexpected unindent. drivers/message/fusion/mptbase.c:5054: WARNING: Definition list ends without a blank line; unexpected unindent. drivers/tty/serial/serial_core.c:1893: WARNING: Definition list ends without a blank line; unexpected unindent. include/linux/spi/spi.h:369: ERROR: Unexpected indentation. WARNING: dvipng command 'dvipng' cannot be run (needed for math display), check the imgmath_dvipng setting vim +/refcount +684 drivers/media/dvb-core/dvb_frontend.h 35848bf0 drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-08-22 668 ^1da177e drivers/media/dvb/dvb-core/dvb_frontend.h Linus Torvalds 2005-04-16 669 struct dvb_frontend { 1f862a68 drivers/media/dvb-core/dvb_frontend.h Max Kellermann 2016-08-09 670 struct kref refcount; dea74869 drivers/media/dvb/dvb-core/dvb_frontend.h Patrick Boettcher 2006-05-14 671 struct dvb_frontend_ops ops; ^1da177e drivers/media/dvb/dvb-core/dvb_frontend.h Linus Torvalds 2005-04-16 672 struct dvb_adapter *dvb; ^1da177e drivers/media/dvb/dvb-core/dvb_frontend.h Linus Torvalds 2005-04-16 673 void *demodulator_priv; 7eef5dd6 drivers/media/dvb/dvb-core/dvb_frontend.h Andrew de Quincey 2006-04-18 674 void *tuner_priv; ^1da177e drivers/media/dvb/dvb-core/dvb_frontend.h Linus Torvalds 2005-04-16 675 void *frontend_priv; 94cbae5a drivers/media/dvb/dvb-core/dvb_frontend.h Andrew de Quincey 2006-08-08 676 void *sec_priv; 16f29168 drivers/media/dvb/dvb-core/dvb_frontend.h Michael Krufky 2007-10-21 677 void *analog_demod_priv; 56f0680a drivers/media/dvb/dvb-core/dvb_frontend.h Steven Toth 2008-09-11 678 struct dtv_frontend_properties dtv_property_cache; ebb8d68a drivers/media/dvb/dvb-core/dvb_frontend.h Michael Krufky 2008-09-10 679 #define DVB_FRONTEND_COMPONENT_TUNER 0 b748e6a9 drivers/media/dvb/dvb-core/dvb_frontend.h Antti Palosaari 2012-01-10 680 #define DVB_FRONTEND_COMPONENT_DEMOD 1 ebb8d68a drivers/media/dvb/dvb-core/dvb_frontend.h Michael Krufky 2008-09-10 681 int (*callback)(void *adapter_priv, int component, int cmd, int arg); 363c35fc drivers/media/dvb/dvb-core/dvb_frontend.h Steven Toth 2008-10-11 682 int id; 18ed2860 drivers/media/dvb-core/dvb_frontend.h Shuah Khan 2014-07-12 683 unsigned int exit; ^1da177e drivers/media/dvb/dvb-core/dvb_frontend.h Linus Torvalds 2005-04-16 @684 }; ^1da177e drivers/media/dvb/dvb-core/dvb_frontend.h Linus Torvalds 2005-04-16 685 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 686 /** 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 687 * dvb_register_frontend() - Registers a DVB frontend at the adapter 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 688 * 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 689 * @dvb: pointer to the dvb adapter 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 690 * @fe: pointer to the frontend struct 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 691 * 66f4b3cb drivers/media/dvb-core/dvb_frontend.h Mauro Carvalho Chehab 2015-11-10 692 * Allocate and initialize the private data needed by the frontend core to :::::: The code at line 684 was first introduced by commit :::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2 :::::: TO: Linus Torvalds <torvalds@xxxxxxxxxxxxxxx> :::::: CC: Linus Torvalds <torvalds@xxxxxxxxxxxxxxx> --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
Attachment:
.config.gz
Description: application/gzip