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/10] staging: comedi: introduce comedi_pcmcia.h header
Date: Fri, 30 Jan 2015 09:57:16 +0000	[thread overview]
Message-ID: <1422611846-15921-1-git-send-email-abbotti@mev.co.uk> (raw)

"comedidev.h" includes PCMCIA-specific stuff that gets included by all
comedi drivers including non-PCMCIA ones.  Separate it out into its own
header "comedi_pcmcia.h".  Make the new header include
<pcmcia/cistpl.h>, <pcmcia/ds.h> and "comedidev.h" so that comedi PCMCIA
drivers do not need to include them explicitly.

01) staging: comedi: add comedi_pcmcia.h
02) staging: comedi: comedi_pcmcia.c: include new "comedi_pcmcia.h"
    header
03) staging: comedi: cb_das16_cs: include new "comedi_pcmcia.h" header
04) staging: comedi: das08_cs: include new "comedi_pcmcia.h" header
05) staging: comedi: ni_daq_700: include new "comedi_pcmcia.h" header
06) staging: comedi: ni_daq_dio24: include new "comedi_pcmcia.h" header
07) staging: comedi: ni_labpc_cs: include new "comedi_pcmcia.h" header
08) staging: comedi: ni_mio_cs: include new "comedi_pcmcia.h" header
09) staging: comedi: quatech_daqp_cs: include new "comedi_pcmcia.h"
    header
10) staging: comedi: comedi_pcmcia.h: move PCMCIA stuff out of
    comedidev.h

 drivers/staging/comedi/comedi_pcmcia.c           |  5 +--
 drivers/staging/comedi/comedi_pcmcia.h           | 55 ++++++++++++++++++++++++
 drivers/staging/comedi/comedidev.h               | 33 --------------
 drivers/staging/comedi/drivers/cb_das16_cs.c     |  5 +--
 drivers/staging/comedi/drivers/das08_cs.c        |  5 +--
 drivers/staging/comedi/drivers/ni_daq_700.c      |  5 +--
 drivers/staging/comedi/drivers/ni_daq_dio24.c    |  6 +--
 drivers/staging/comedi/drivers/ni_labpc_cs.c     |  6 +--
 drivers/staging/comedi/drivers/ni_mio_cs.c       |  6 +--
 drivers/staging/comedi/drivers/quatech_daqp_cs.c |  7 +--
 10 files changed, 63 insertions(+), 70 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/10] staging: comedi: introduce comedi_pcmcia.h header
Date: Fri, 30 Jan 2015 09:57:16 +0000	[thread overview]
Message-ID: <1422611846-15921-1-git-send-email-abbotti@mev.co.uk> (raw)

"comedidev.h" includes PCMCIA-specific stuff that gets included by all
comedi drivers including non-PCMCIA ones.  Separate it out into its own
header "comedi_pcmcia.h".  Make the new header include
<pcmcia/cistpl.h>, <pcmcia/ds.h> and "comedidev.h" so that comedi PCMCIA
drivers do not need to include them explicitly.

01) staging: comedi: add comedi_pcmcia.h
02) staging: comedi: comedi_pcmcia.c: include new "comedi_pcmcia.h"
    header
03) staging: comedi: cb_das16_cs: include new "comedi_pcmcia.h" header
04) staging: comedi: das08_cs: include new "comedi_pcmcia.h" header
05) staging: comedi: ni_daq_700: include new "comedi_pcmcia.h" header
06) staging: comedi: ni_daq_dio24: include new "comedi_pcmcia.h" header
07) staging: comedi: ni_labpc_cs: include new "comedi_pcmcia.h" header
08) staging: comedi: ni_mio_cs: include new "comedi_pcmcia.h" header
09) staging: comedi: quatech_daqp_cs: include new "comedi_pcmcia.h"
    header
10) staging: comedi: comedi_pcmcia.h: move PCMCIA stuff out of
    comedidev.h

 drivers/staging/comedi/comedi_pcmcia.c           |  5 +--
 drivers/staging/comedi/comedi_pcmcia.h           | 55 ++++++++++++++++++++++++
 drivers/staging/comedi/comedidev.h               | 33 --------------
 drivers/staging/comedi/drivers/cb_das16_cs.c     |  5 +--
 drivers/staging/comedi/drivers/das08_cs.c        |  5 +--
 drivers/staging/comedi/drivers/ni_daq_700.c      |  5 +--
 drivers/staging/comedi/drivers/ni_daq_dio24.c    |  6 +--
 drivers/staging/comedi/drivers/ni_labpc_cs.c     |  6 +--
 drivers/staging/comedi/drivers/ni_mio_cs.c       |  6 +--
 drivers/staging/comedi/drivers/quatech_daqp_cs.c |  7 +--
 10 files changed, 63 insertions(+), 70 deletions(-)
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

             reply	other threads:[~2015-01-30  9:57 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-30  9:57 Ian Abbott [this message]
2015-01-30  9:57 ` [PATCH 00/10] staging: comedi: introduce comedi_pcmcia.h header Ian Abbott
2015-01-30  9:57 ` [PATCH 01/10] staging: comedi: add comedi_pcmcia.h Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 02/10] staging: comedi: comedi_pcmcia.c: include new "comedi_pcmcia.h" header Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 03/10] staging: comedi: cb_das16_cs: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 04/10] staging: comedi: das08_cs: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 05/10] staging: comedi: ni_daq_700: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 06/10] staging: comedi: ni_daq_dio24: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 07/10] staging: comedi: ni_labpc_cs: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 08/10] staging: comedi: ni_mio_cs: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 09/10] staging: comedi: quatech_daqp_cs: " Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30  9:57 ` [PATCH 10/10] staging: comedi: comedi_pcmcia.h: move PCMCIA stuff out of comedidev.h Ian Abbott
2015-01-30  9:57   ` Ian Abbott
2015-01-30 17:03 ` [PATCH 00/10] staging: comedi: introduce comedi_pcmcia.h header Hartley Sweeten
2015-01-30 17:03   ` 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=1422611846-15921-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.