public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] input: fix up header cleanups: add include <linux/interrupt.h>
@ 2002-11-18 13:01 Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 2+ messages in thread
From: Arnaldo Carvalho de Melo @ 2002-11-18 13:01 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List

Linus,

	Please pull from:

master.kernel.org:/home/acme/BK/includes-2.5

	Now there is five outstanding changesets.

- Arnaldo

You can import this changeset into BK by piping this whole message to:
'| bk receive [path to repository]' or apply the patch as usual.

===================================================================


ChangeSet@1.894, 2002-11-18 10:42:52-02:00, acme@conectiva.com.br
  o input: fix up header cleanups: add include <linux/interrupt.h>


 mouse/inport.c   |    7 ++++---
 serio/ct82c710.c |   10 +++++-----
 2 files changed, 9 insertions(+), 8 deletions(-)


diff -Nru a/drivers/input/mouse/inport.c b/drivers/input/mouse/inport.c
--- a/drivers/input/mouse/inport.c	Mon Nov 18 10:57:01 2002
+++ b/drivers/input/mouse/inport.c	Mon Nov 18 10:57:01 2002
@@ -34,14 +34,15 @@
  * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  */
 
-#include <asm/io.h>
-#include <asm/irq.h>
-
 #include <linux/module.h>
 #include <linux/config.h>
 #include <linux/ioport.h>
 #include <linux/init.h>
+#include <linux/interrupt.h>
 #include <linux/input.h>
+
+#include <asm/io.h>
+#include <asm/irq.h>
 
 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
 MODULE_DESCRIPTION("Inport (ATI XL and Microsoft) busmouse driver");
diff -Nru a/drivers/input/serio/ct82c710.c b/drivers/input/serio/ct82c710.c
--- a/drivers/input/serio/ct82c710.c	Mon Nov 18 10:57:01 2002
+++ b/drivers/input/serio/ct82c710.c	Mon Nov 18 10:57:01 2002
@@ -28,16 +28,16 @@
  * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  */
 
-#include <asm/io.h>
-
 #include <linux/delay.h>
 #include <linux/module.h>
 #include <linux/ioport.h>
 #include <linux/config.h>
 #include <linux/init.h>
+#include <linux/interrupt.h>
 #include <linux/serio.h>
 #include <linux/errno.h>
-#include <linux/sched.h>
+
+#include <asm/io.h>
 
 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
 MODULE_DESCRIPTION("82C710 C&T mouse port chip driver");
@@ -61,8 +61,8 @@
 
 #define CT82C710_IRQ          12
 
-static int ct82c710_data = 0;
-static int ct82c710_status = 0;
+static int ct82c710_data;
+static int ct82c710_status;
 
 static void ct82c710_interrupt(int cpl, void *dev_id, struct pt_regs * regs);
 

===================================================================


This BitKeeper patch contains the following changesets:
1.894
## Wrapped with gzip_uu ##


begin 664 bkpatch15333
M'XL(`)WCV#T``\U6VVZ;0!!]]G[%2'FL@)V]<$L=I8FKUDJE1JGR5JG:+)M`
M:\"%Q4DJ/KZ+TUSDN(Z;ME(`+6AF.,SEG!4[<-J:)ATI71JR`^_KUJ8C75=&
MVV*A?%V7_EGC'"=U[1Q!7I<F.#@*BDK/NLRT'O,E<>YC974."].TZ0A]?F>Q
MUW.3CD[>OCO]\.:$D/$8#G-579A/QL)X3&S=+-0L:_>5S6=UY=M&56UI[/+#
M_5UHSRAE[I08<2K#'D,JHEYCAJ@$FHPR$8>"##7LK^:^@H*(,3+A[CT*SA(R
M`?3C1`!E`6*`,2!-!4LE\RA+*86UH/"*@4?)`?S;`@Z)AAJ*:M[9%,Z+*^CF
MD!N5F0;TS*BJF[<IJ"R#7^V'U[.BZJ[<-*QIFFYN_7R/'`$*&3%R?-]JXOWA
M00A5E.S!HOYJC<[W[64Q*RYRZW?ZTM<_^JPIAED'RU2#LNY:,SS7C?7U3:T1
MY<AI++"GDC+9FTR=B3`)=1)CF$1R?5^?!KZ=GTAZ-SX>;YVD8WE1!]K&3$=(
M'Z;)9(AASU@H9*\C8ZA09Y$T:(S8*LNUR`_R9*&,XR7W-U4WR.'_M?L.NG7O
M;@6)E,;H",MI+ZCDT5(HX:I,1+)9)@(\_E)E<L.?C^`UE\O+T?YXXXB>(:,)
MCX"3J>"`9&=3.E,A7.#G!T&J+8.B'GPKMN;[8'S,IU4>;L^H9VGC[["=-+B(
MW"[LH$6\)->C/?@I<DGPY$LEUXWH-Y)KM3//HA<"(U-'LB?H-1'4A4S=RGY#
MLDDH!JA0NK6URA;:56CA-KTOF;)J=ZUGL'7M[OUO@,Z-_M9VY9B?QUG$SAGY
)"2"D!2-F"```
`
end

^ permalink raw reply	[flat|nested] 2+ messages in thread
* [PATCH] input: fix up header cleanups: add include <linux/interrupt.h>
@ 2002-11-21  1:07 Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 2+ messages in thread
From: Arnaldo Carvalho de Melo @ 2002-11-21  1:07 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List

Linus,

	Please pull from:

master.kernel.org:/home/acme/BK/includes-2.5

	Now there are two outstanding changesets.

- Arnaldo

You can import this changeset into BK by piping this whole message to:
'| bk receive [path to repository]' or apply the patch as usual.

===================================================================


ChangeSet@1.923, 2002-11-20 23:04:41-02:00, wli@holomorphy.com
  input: fix up header cleanups: add <linux/interrupt.h>


 logibm.c   |    7 ++++---
 pc110pad.c |    1 +
 2 files changed, 5 insertions(+), 3 deletions(-)


diff -Nru a/drivers/input/mouse/logibm.c b/drivers/input/mouse/logibm.c
--- a/drivers/input/mouse/logibm.c	Wed Nov 20 23:05:04 2002
+++ b/drivers/input/mouse/logibm.c	Wed Nov 20 23:05:04 2002
@@ -35,14 +35,15 @@
  * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  */
 
-#include <asm/io.h>
-#include <asm/irq.h>
-
 #include <linux/module.h>
 #include <linux/delay.h>
 #include <linux/ioport.h>
 #include <linux/init.h>
 #include <linux/input.h>
+#include <linux/interrupt.h>
+
+#include <asm/io.h>
+#include <asm/irq.h>
 
 MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
 MODULE_DESCRIPTION("Logitech busmouse driver");
diff -Nru a/drivers/input/mouse/pc110pad.c b/drivers/input/mouse/pc110pad.c
--- a/drivers/input/mouse/pc110pad.c	Wed Nov 20 23:05:04 2002
+++ b/drivers/input/mouse/pc110pad.c	Wed Nov 20 23:05:04 2002
@@ -37,6 +37,7 @@
 #include <linux/ioport.h>
 #include <linux/input.h>
 #include <linux/init.h>
+#include <linux/interrupt.h>
 
 #include <asm/io.h>
 #include <asm/irq.h>

===================================================================


This BitKeeper patch contains the following changesets:
1.923
## Wrapped with gzip_uu ##


begin 664 bkpatch3903
M'XL(`$`QW#T``\V536^;0!"&S]Y?L5*.E6%F/P"C.G*35&V42K52Y=;+9MD$
M6F`I+'92\>,+-'(BIW7CM)4"7)B!EW=GGED.Z$5CZGBB=&'(`7UO&Q=/M"V-
M=ME*>=H6WF7=)\ZM[1-^:@OC'YWY6:GS-C'-E'F2].FE<CJE*U,W\00]OHFX
MV\K$D_.W[RX^O#DG9#ZGQZDJK\TGX^A\3IRM5RI/FH5R:6Y+S]6J;`KCQ@]W
MFT<[!L#Z4V+(008=!B#"3F."J`2:!)B(`D&&-2RVO6^I(#*$_D3>,<&D)"<4
MO1GC%)B/Z#.@C,<@8H%38#$`7>?9(K6Y+6Q=I;>#*'W%Z!3($?VW[H^)IEE9
MM2ZF5]D-;2N:&I68FNK<J+*MFIBJ)*&O\ZQL;_H&.%/7;>6\])"<429@QLGR
MOKIDNN=!""@@AW1EOSBCTX5;9WEVG3JOU6M/?^^2.AO:ZX\6_<*VC?%S>YU=
M%I[^N<(0.'*(!'8H)!/=U4R&.H+H*M!!,I3X<2G_K'K7+\&C_E;*<$^'E4:$
M2B6//7+.(^C"(%`\27IYI3BRX*D>MW0?N(291#F2OFMM`_S_K](;Z:9_]TF2
M"!!A3RB'#L-(!N-8A-M#P:,=0R'HE+^PH1B!^4BG]7J\>LB7.[ORC*$YX1'E
MY%1(*LC!W:[X2SN?'Z154_B9':);L?K;$/P=//?0[8O/OF/P=^),(LJ@YQ*"
M",6(DMP+)7QQ^^LXU$\@Z;X6SV#IE,\H[J9H\V/5J=%?F[:8@U`S(94F/P#[
'J_C&R@<`````
`
end

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-11-21  1:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-18 13:01 [PATCH] input: fix up header cleanups: add include <linux/interrupt.h> Arnaldo Carvalho de Melo
  -- strict thread matches above, loose matches on Subject: below --
2002-11-21  1:07 Arnaldo Carvalho de Melo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox