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 07/10] staging: comedi: ni_labpc_cs: include new "comedi_pcmcia.h" header
Date: Fri, 30 Jan 2015 09:57:23 +0000	[thread overview]
Message-ID: <1422611846-15921-8-git-send-email-abbotti@mev.co.uk> (raw)
In-Reply-To: <1422611846-15921-1-git-send-email-abbotti@mev.co.uk>

Include the new "../comedi_pcmcia.h" header instead of
<pcmcia/cistpl.h>, <pcmcia/cisreg.h>, <pcmcia/ds.h> and
"../comedidev.h".  <pcmcia/cisreg.h> isn't needed and the others will
now get included indirectly.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
---
 drivers/staging/comedi/drivers/ni_labpc_cs.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/staging/comedi/drivers/ni_labpc_cs.c b/drivers/staging/comedi/drivers/ni_labpc_cs.c
index ece0010..746c4cd9 100644
--- a/drivers/staging/comedi/drivers/ni_labpc_cs.c
+++ b/drivers/staging/comedi/drivers/ni_labpc_cs.c
@@ -55,11 +55,7 @@ NI manuals:
 
 #include <linux/module.h>
 
-#include "../comedidev.h"
-
-#include <pcmcia/cistpl.h>
-#include <pcmcia/cisreg.h>
-#include <pcmcia/ds.h>
+#include "../comedi_pcmcia.h"
 
 #include "ni_labpc.h"
 
-- 
2.1.4


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 07/10] staging: comedi: ni_labpc_cs: include new "comedi_pcmcia.h" header
Date: Fri, 30 Jan 2015 09:57:23 +0000	[thread overview]
Message-ID: <1422611846-15921-8-git-send-email-abbotti@mev.co.uk> (raw)
In-Reply-To: <1422611846-15921-1-git-send-email-abbotti@mev.co.uk>

Include the new "../comedi_pcmcia.h" header instead of
<pcmcia/cistpl.h>, <pcmcia/cisreg.h>, <pcmcia/ds.h> and
"../comedidev.h".  <pcmcia/cisreg.h> isn't needed and the others will
now get included indirectly.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
---
 drivers/staging/comedi/drivers/ni_labpc_cs.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/staging/comedi/drivers/ni_labpc_cs.c b/drivers/staging/comedi/drivers/ni_labpc_cs.c
index ece0010..746c4cd9 100644
--- a/drivers/staging/comedi/drivers/ni_labpc_cs.c
+++ b/drivers/staging/comedi/drivers/ni_labpc_cs.c
@@ -55,11 +55,7 @@ NI manuals:
 
 #include <linux/module.h>
 
-#include "../comedidev.h"
-
-#include <pcmcia/cistpl.h>
-#include <pcmcia/cisreg.h>
-#include <pcmcia/ds.h>
+#include "../comedi_pcmcia.h"
 
 #include "ni_labpc.h"
 
-- 
2.1.4

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

  parent 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 [PATCH 00/10] staging: comedi: introduce comedi_pcmcia.h header Ian Abbott
2015-01-30  9:57 ` 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 ` Ian Abbott [this message]
2015-01-30  9:57   ` [PATCH 07/10] staging: comedi: ni_labpc_cs: " 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-8-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.