aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/unixrup.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-01-11 15:17:49 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-11 21:42:14 -0500
commit8d8706e2f86d28814c1b40a116ffdeca35e4c949 (patch)
tree146567d7a807feb37a5368fbb4a6ee76d9d7bc7e /drivers/char/rio/unixrup.h
parenta9415644583ef344e02f84faf5fe24bfadb2af8e (diff)
[PATCH] lindent rio drivers
Run all rio files through indent -kr -i8 -bri0 -l255, as requested by Alan. rioboot.c and rioinit.c were skipped due to worrisome lindent warnings. Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rio/unixrup.h')
-rw-r--r--drivers/char/rio/unixrup.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/drivers/char/rio/unixrup.h b/drivers/char/rio/unixrup.h
index eddf86278abc..a126c7cabac6 100644
--- a/drivers/char/rio/unixrup.h
+++ b/drivers/char/rio/unixrup.h
@@ -41,16 +41,15 @@ static char *_unixrup_h_sccs_ = "@(#)unixrup.h 1.2";
41** UnixRup data structure. This contains pointers to actual RUPs on the 41** UnixRup data structure. This contains pointers to actual RUPs on the
42** host card, and all the command/boot control stuff. 42** host card, and all the command/boot control stuff.
43*/ 43*/
44struct UnixRup 44struct UnixRup {
45{ 45 struct CmdBlk *CmdsWaitingP; /* Commands waiting to be done */
46 struct CmdBlk *CmdsWaitingP; /* Commands waiting to be done */ 46 struct CmdBlk *CmdPendingP; /* The command currently being sent */
47 struct CmdBlk *CmdPendingP; /* The command currently being sent */ 47 struct RUP *RupP; /* the Rup to send it to */
48 struct RUP *RupP; /* the Rup to send it to */ 48 uint Id; /* Id number */
49 uint Id; /* Id number */ 49 uint BaseSysPort; /* SysPort of first tty on this RTA */
50 uint BaseSysPort; /* SysPort of first tty on this RTA */ 50 uint ModTypes; /* Modules on this RTA */
51 uint ModTypes; /* Modules on this RTA */ 51 spinlock_t RupLock; /* Lock structure for MPX */
52 spinlock_t RupLock; /* Lock structure for MPX */ 52 /* struct lockb RupLock; *//* Lock structure for MPX */
53/* struct lockb RupLock; */ /* Lock structure for MPX */
54}; 53};
55 54
56#endif /* __rio_unixrup_h__ */ 55#endif /* __rio_unixrup_h__ */