All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ian Abbott <abbotti@mev.co.uk>
To: <driverdev-devel@linuxdriverproject.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Ian Abbott <abbotti@mev.co.uk>,
	H Hartley Sweeten <hartleys@visionengravers.com>,
	<linux-kernel@vger.kernel.org>
Subject: [PATCH 00/45] staging: comedi: fix up some driver comments
Date: Mon,  5 Jan 2015 17:54:28 +0000	[thread overview]
Message-ID: <1420480513-14765-1-git-send-email-abbotti@mev.co.uk> (raw)

Most comedi drivers have a special comedi driver comment block,
information from which can be extracted by some scripts for use in the
"Comedilib" manual and the list of supported devices on the comedi web
site.  (Currently, the information for those places comes from the
"out-of-tree" comedi drivers.)

The "Devices:" line (and continuation lines) are supposed to be a
comma-(and space)-separated list with the first item in this format:

  [Manufacturer] BOARD-NAME (comedi-board-name)

The "[Manufacturer]" and "(comedi-board-name)" parts can be omitted from
subsequent list items to decrease verbosity, in which case they are
assumed to be the same as the preceding item.

Several comedi drivers have the "Devices:" line formatted incorrectly,
often with the use of square brackets and parentheses reversed.  A few
comedi modules have driver comments, but are just support modules for
other drivers, so don't really need a driver comment.

01) staging: comedi: 8255_pci: rewrite comedi driver comment block
02) staging: comedi: adl_pci6208: rewrite "Devices:" line
03) staging: comedi: adl_pci7x3x: rewrite comedi driver comment block
04) staging: comedi: adl_pci8164: rewrite "Devices:" line
05) staging: comedi: adv_pci1723: rewrite "Devices:" line
06) staging: comedi: adv_pci1724: rewrite "Devices:" line
07) staging: comedi: c6xdigio: rewrite "Devices:" line
08) staging: comedi: cb_pcidda: rewrite "Devices:" line
09) staging: comedi: comedi_parport: rewrite "Devices:" line
10) staging: comedi: dac02: rewrite "Devices:" line
11) staging: comedi: das08: remove comedi driver comment block
12) staging: comedi: das08_isa: rewrite "Devices:" line
13) staging: comedi: das08_pci: rewrite "Devices:" line
14) staging: comedi: das16: rewrite "Devices:" line
15) staging: comedi: das6402: rewrite "Devices:" line
16) staging: comedi: dmm32at: rewrite "Devices:" line
17) staging: comedi: dt282x: rewrite "Devices:" line
18) staging: comedi: dyna_pci10xx: rewrite comedi driver comment block
19) staging: comedi: ii_pci20kc: rewrite "Devices:" line
20) staging: comedi: ke_counter: rewrite "Devices:" line
21) staging: comedi: me_daq: rewrite "Devices:" line
22) staging: comedi: mf6x4: rewrite "Devices:" line
23) staging: comedi: ni_6527: rewrite "Devices:" line
24) staging: comedi: ni_65xx: rewrite "Devices:" line
25) staging: comedi: ni_65xx: use board names on "Devices:" line
26) staging: comedi: ni_at_ao: rewrite "Devices:" line
27) staging: comedi: ni_labpc: rewrite "Devices:" line
28) staging: comedi: ni_labpc_pci: rewrite "Devices:" line
29) staging: comedi: ni_tio: change comedi "driver" comment to "module"
30) staging: comedi: ni_tiocmd: change comedi "driver" comment to
    "module"
31) staging: comedi: pcl711: rewrite "Devices:" line
32) staging: comedi: pcl724: rewrite "Devices:" line
33) staging: comedi: pcl726: rewrite "Devices:" line
34) staging: comedi: pcl730: rewrite "Devices:" line
35) staging: comedi: pcmad: rewrite "Devices:" line
36) staging: comedi: pcmda12: rewrite "Devices:" line
37) staging: comedi: pcmmio: rewrite "Devices:" line
38) staging: comedi: pcmuio: rewrite "Devices:" line
39) staging: comedi: rtd520: rewrite "Devices:" line
40) staging: comedi: rti800: rewrite "Devices:" line
41) staging: comedi: rti802: rewrite "Devices:" line
42) staging: comedi: usbdux: rewrite "Devices:" line
43) staging: comedi: usbduxfast: rewrite "Devices:" line
44) staging: comedi: usbduxsigma: rewrite "Devices:" line
45) staging: comedi: vm80xx: rewrite comedi driver comment block

 drivers/staging/comedi/drivers/8255_pci.c       | 65 +++++++++++++++----------
 drivers/staging/comedi/drivers/adl_pci6208.c    |  3 +-
 drivers/staging/comedi/drivers/adl_pci7x3x.c    | 62 +++++++++++------------
 drivers/staging/comedi/drivers/adl_pci8164.c    |  2 +-
 drivers/staging/comedi/drivers/adv_pci1723.c    |  2 +-
 drivers/staging/comedi/drivers/adv_pci1724.c    |  2 +-
 drivers/staging/comedi/drivers/c6xdigio.c       |  2 +-
 drivers/staging/comedi/drivers/cb_pcidda.c      | 10 ++--
 drivers/staging/comedi/drivers/comedi_parport.c |  2 +-
 drivers/staging/comedi/drivers/dac02.c          |  2 +-
 drivers/staging/comedi/drivers/das08.c          | 17 +------
 drivers/staging/comedi/drivers/das08_isa.c      | 18 +++----
 drivers/staging/comedi/drivers/das08_pci.c      |  2 +-
 drivers/staging/comedi/drivers/das16.c          | 33 +++++--------
 drivers/staging/comedi/drivers/das6402.c        |  4 +-
 drivers/staging/comedi/drivers/dmm32at.c        |  2 +-
 drivers/staging/comedi/drivers/dt282x.c         | 22 +++------
 drivers/staging/comedi/drivers/dyna_pci10xx.c   | 35 +++++++------
 drivers/staging/comedi/drivers/ii_pci20kc.c     |  2 +-
 drivers/staging/comedi/drivers/ke_counter.c     |  2 +-
 drivers/staging/comedi/drivers/me_daq.c         |  3 +-
 drivers/staging/comedi/drivers/mf6x4.c          |  2 +-
 drivers/staging/comedi/drivers/ni_6527.c        |  3 +-
 drivers/staging/comedi/drivers/ni_65xx.c        | 30 +++---------
 drivers/staging/comedi/drivers/ni_at_ao.c       |  3 +-
 drivers/staging/comedi/drivers/ni_labpc.c       |  5 +-
 drivers/staging/comedi/drivers/ni_labpc_pci.c   |  2 +-
 drivers/staging/comedi/drivers/ni_tio.c         | 43 ++++++++--------
 drivers/staging/comedi/drivers/ni_tiocmd.c      | 43 ++++++++--------
 drivers/staging/comedi/drivers/pcl711.c         |  6 +--
 drivers/staging/comedi/drivers/pcl724.c         | 12 ++---
 drivers/staging/comedi/drivers/pcl726.c         |  7 +--
 drivers/staging/comedi/drivers/pcl730.c         | 19 +++-----
 drivers/staging/comedi/drivers/pcmad.c          |  3 +-
 drivers/staging/comedi/drivers/pcmda12.c        |  2 +-
 drivers/staging/comedi/drivers/pcmmio.c         |  2 +-
 drivers/staging/comedi/drivers/pcmuio.c         |  3 +-
 drivers/staging/comedi/drivers/rtd520.c         |  6 +--
 drivers/staging/comedi/drivers/rti800.c         |  3 +-
 drivers/staging/comedi/drivers/rti802.c         |  2 +-
 drivers/staging/comedi/drivers/usbdux.c         |  3 +-
 drivers/staging/comedi/drivers/usbduxfast.c     |  2 +-
 drivers/staging/comedi/drivers/usbduxsigma.c    |  2 +-
 drivers/staging/comedi/drivers/vmk80xx.c        | 31 ++++++------
 44 files changed, 224 insertions(+), 302 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Ian Abbott <abbotti@mev.co.uk>
To: driverdev-devel@linuxdriverproject.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Ian Abbott <abbotti@mev.co.uk>,
	linux-kernel@vger.kernel.org
Subject: [PATCH 00/45] staging: comedi: fix up some driver comments
Date: Mon,  5 Jan 2015 17:54:28 +0000	[thread overview]
Message-ID: <1420480513-14765-1-git-send-email-abbotti@mev.co.uk> (raw)

Most comedi drivers have a special comedi driver comment block,
information from which can be extracted by some scripts for use in the
"Comedilib" manual and the list of supported devices on the comedi web
site.  (Currently, the information for those places comes from the
"out-of-tree" comedi drivers.)

The "Devices:" line (and continuation lines) are supposed to be a
comma-(and space)-separated list with the first item in this format:

  [Manufacturer] BOARD-NAME (comedi-board-name)

The "[Manufacturer]" and "(comedi-board-name)" parts can be omitted from
subsequent list items to decrease verbosity, in which case they are
assumed to be the same as the preceding item.

Several comedi drivers have the "Devices:" line formatted incorrectly,
often with the use of square brackets and parentheses reversed.  A few
comedi modules have driver comments, but are just support modules for
other drivers, so don't really need a driver comment.

01) staging: comedi: 8255_pci: rewrite comedi driver comment block
02) staging: comedi: adl_pci6208: rewrite "Devices:" line
03) staging: comedi: adl_pci7x3x: rewrite comedi driver comment block
04) staging: comedi: adl_pci8164: rewrite "Devices:" line
05) staging: comedi: adv_pci1723: rewrite "Devices:" line
06) staging: comedi: adv_pci1724: rewrite "Devices:" line
07) staging: comedi: c6xdigio: rewrite "Devices:" line
08) staging: comedi: cb_pcidda: rewrite "Devices:" line
09) staging: comedi: comedi_parport: rewrite "Devices:" line
10) staging: comedi: dac02: rewrite "Devices:" line
11) staging: comedi: das08: remove comedi driver comment block
12) staging: comedi: das08_isa: rewrite "Devices:" line
13) staging: comedi: das08_pci: rewrite "Devices:" line
14) staging: comedi: das16: rewrite "Devices:" line
15) staging: comedi: das6402: rewrite "Devices:" line
16) staging: comedi: dmm32at: rewrite "Devices:" line
17) staging: comedi: dt282x: rewrite "Devices:" line
18) staging: comedi: dyna_pci10xx: rewrite comedi driver comment block
19) staging: comedi: ii_pci20kc: rewrite "Devices:" line
20) staging: comedi: ke_counter: rewrite "Devices:" line
21) staging: comedi: me_daq: rewrite "Devices:" line
22) staging: comedi: mf6x4: rewrite "Devices:" line
23) staging: comedi: ni_6527: rewrite "Devices:" line
24) staging: comedi: ni_65xx: rewrite "Devices:" line
25) staging: comedi: ni_65xx: use board names on "Devices:" line
26) staging: comedi: ni_at_ao: rewrite "Devices:" line
27) staging: comedi: ni_labpc: rewrite "Devices:" line
28) staging: comedi: ni_labpc_pci: rewrite "Devices:" line
29) staging: comedi: ni_tio: change comedi "driver" comment to "module"
30) staging: comedi: ni_tiocmd: change comedi "driver" comment to
    "module"
31) staging: comedi: pcl711: rewrite "Devices:" line
32) staging: comedi: pcl724: rewrite "Devices:" line
33) staging: comedi: pcl726: rewrite "Devices:" line
34) staging: comedi: pcl730: rewrite "Devices:" line
35) staging: comedi: pcmad: rewrite "Devices:" line
36) staging: comedi: pcmda12: rewrite "Devices:" line
37) staging: comedi: pcmmio: rewrite "Devices:" line
38) staging: comedi: pcmuio: rewrite "Devices:" line
39) staging: comedi: rtd520: rewrite "Devices:" line
40) staging: comedi: rti800: rewrite "Devices:" line
41) staging: comedi: rti802: rewrite "Devices:" line
42) staging: comedi: usbdux: rewrite "Devices:" line
43) staging: comedi: usbduxfast: rewrite "Devices:" line
44) staging: comedi: usbduxsigma: rewrite "Devices:" line
45) staging: comedi: vm80xx: rewrite comedi driver comment block

 drivers/staging/comedi/drivers/8255_pci.c       | 65 +++++++++++++++----------
 drivers/staging/comedi/drivers/adl_pci6208.c    |  3 +-
 drivers/staging/comedi/drivers/adl_pci7x3x.c    | 62 +++++++++++------------
 drivers/staging/comedi/drivers/adl_pci8164.c    |  2 +-
 drivers/staging/comedi/drivers/adv_pci1723.c    |  2 +-
 drivers/staging/comedi/drivers/adv_pci1724.c    |  2 +-
 drivers/staging/comedi/drivers/c6xdigio.c       |  2 +-
 drivers/staging/comedi/drivers/cb_pcidda.c      | 10 ++--
 drivers/staging/comedi/drivers/comedi_parport.c |  2 +-
 drivers/staging/comedi/drivers/dac02.c          |  2 +-
 drivers/staging/comedi/drivers/das08.c          | 17 +------
 drivers/staging/comedi/drivers/das08_isa.c      | 18 +++----
 drivers/staging/comedi/drivers/das08_pci.c      |  2 +-
 drivers/staging/comedi/drivers/das16.c          | 33 +++++--------
 drivers/staging/comedi/drivers/das6402.c        |  4 +-
 drivers/staging/comedi/drivers/dmm32at.c        |  2 +-
 drivers/staging/comedi/drivers/dt282x.c         | 22 +++------
 drivers/staging/comedi/drivers/dyna_pci10xx.c   | 35 +++++++------
 drivers/staging/comedi/drivers/ii_pci20kc.c     |  2 +-
 drivers/staging/comedi/drivers/ke_counter.c     |  2 +-
 drivers/staging/comedi/drivers/me_daq.c         |  3 +-
 drivers/staging/comedi/drivers/mf6x4.c          |  2 +-
 drivers/staging/comedi/drivers/ni_6527.c        |  3 +-
 drivers/staging/comedi/drivers/ni_65xx.c        | 30 +++---------
 drivers/staging/comedi/drivers/ni_at_ao.c       |  3 +-
 drivers/staging/comedi/drivers/ni_labpc.c       |  5 +-
 drivers/staging/comedi/drivers/ni_labpc_pci.c   |  2 +-
 drivers/staging/comedi/drivers/ni_tio.c         | 43 ++++++++--------
 drivers/staging/comedi/drivers/ni_tiocmd.c      | 43 ++++++++--------
 drivers/staging/comedi/drivers/pcl711.c         |  6 +--
 drivers/staging/comedi/drivers/pcl724.c         | 12 ++---
 drivers/staging/comedi/drivers/pcl726.c         |  7 +--
 drivers/staging/comedi/drivers/pcl730.c         | 19 +++-----
 drivers/staging/comedi/drivers/pcmad.c          |  3 +-
 drivers/staging/comedi/drivers/pcmda12.c        |  2 +-
 drivers/staging/comedi/drivers/pcmmio.c         |  2 +-
 drivers/staging/comedi/drivers/pcmuio.c         |  3 +-
 drivers/staging/comedi/drivers/rtd520.c         |  6 +--
 drivers/staging/comedi/drivers/rti800.c         |  3 +-
 drivers/staging/comedi/drivers/rti802.c         |  2 +-
 drivers/staging/comedi/drivers/usbdux.c         |  3 +-
 drivers/staging/comedi/drivers/usbduxfast.c     |  2 +-
 drivers/staging/comedi/drivers/usbduxsigma.c    |  2 +-
 drivers/staging/comedi/drivers/vmk80xx.c        | 31 ++++++------
 44 files changed, 224 insertions(+), 302 deletions(-)
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

             reply	other threads:[~2015-01-05 17:55 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-05 17:54 Ian Abbott [this message]
2015-01-05 17:54 ` [PATCH 00/45] staging: comedi: fix up some driver comments Ian Abbott
2015-01-05 17:54 ` [PATCH 01/45] staging: comedi: 8255_pci: rewrite comedi driver comment block Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 02/45] staging: comedi: adl_pci6208: rewrite "Devices:" line Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 03/45] staging: comedi: adl_pci7x3x: rewrite comedi driver comment block Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 04/45] staging: comedi: adl_pci8164: rewrite "Devices:" line Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 05/45] staging: comedi: adv_pci1723: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 06/45] staging: comedi: adv_pci1724: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 07/45] staging: comedi: c6xdigio: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 08/45] staging: comedi: cb_pcidda: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 09/45] staging: comedi: comedi_parport: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 10/45] staging: comedi: dac02: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 11/45] staging: comedi: das08: remove comedi driver comment block Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 12/45] staging: comedi: das08_isa: rewrite "Devices:" line Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 13/45] staging: comedi: das08_pci: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 14/45] staging: comedi: das16: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 15/45] staging: comedi: das6402: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 16/45] staging: comedi: dmm32at: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 17/45] staging: comedi: dt282x: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 18/45] staging: comedi: dyna_pci10xx: rewrite comedi driver comment block Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 19/45] staging: comedi: ii_pci20kc: rewrite "Devices:" line Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 20/45] staging: comedi: ke_counter: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 21/45] staging: comedi: me_daq: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 22/45] staging: comedi: mf6x4: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 23/45] staging: comedi: ni_6527: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 24/45] staging: comedi: ni_65xx: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 25/45] staging: comedi: ni_65xx: use board names on " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 26/45] staging: comedi: ni_at_ao: rewrite " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 27/45] staging: comedi: ni_labpc: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 28/45] staging: comedi: ni_labpc_pci: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 29/45] staging: comedi: ni_tio: change comedi "driver" comment to "module" Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 30/45] staging: comedi: ni_tiocmd: " Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:54 ` [PATCH 31/45] staging: comedi: pcl711: rewrite "Devices:" line Ian Abbott
2015-01-05 17:54   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 32/45] staging: comedi: pcl724: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 33/45] staging: comedi: pcl726: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 34/45] staging: comedi: pcl730: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 35/45] staging: comedi: pcmad: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 36/45] staging: comedi: pcmda12: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 37/45] staging: comedi: pcmmio: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 38/45] staging: comedi: pcmuio: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 39/45] staging: comedi: rtd520: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 40/45] staging: comedi: rti800: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 41/45] staging: comedi: rti802: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 42/45] staging: comedi: usbdux: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 43/45] staging: comedi: usbduxfast: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 44/45] staging: comedi: usbduxsigma: " Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 17:55 ` [PATCH 45/45] staging: comedi: vm80xx: rewrite comedi driver comment block Ian Abbott
2015-01-05 17:55   ` Ian Abbott
2015-01-05 18:55 ` [PATCH 00/45] staging: comedi: fix up some driver comments Hartley Sweeten
2015-01-05 18:55   ` Hartley Sweeten

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=1420480513-14765-1-git-send-email-abbotti@mev.co.uk \
    --to=abbotti@mev.co.uk \
    --cc=driverdev-devel@linuxdriverproject.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=hartleys@visionengravers.com \
    --cc=linux-kernel@vger.kernel.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.