aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax/l3ni1.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-02-19 22:52:38 -0500
committerJoe Perches <joe@perches.com>2012-02-21 12:04:01 -0500
commit475be4d85a274d0961593db41cf85689db1d583c (patch)
treeb2b8931eb747794730522c3cf1898e46948527b9 /drivers/isdn/hisax/l3ni1.h
parent0b0a635f79f91f3755b6518627ea06dd0dbfd523 (diff)
isdn: whitespace coding style cleanup
isdn source code uses a not-current coding style. Update the coding style used on a per-line basis so that git diff -w shows only elided blank lines at EOF. Done with emacs and some scripts and some typing. Built x86 allyesconfig. No detected change in objdump -d or size. Signed-off-by: Joe Perches <joe@perches.com>
Diffstat (limited to 'drivers/isdn/hisax/l3ni1.h')
-rw-r--r--drivers/isdn/hisax/l3ni1.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/drivers/isdn/hisax/l3ni1.h b/drivers/isdn/hisax/l3ni1.h
index 4066da2fe5a..99d37d2cea4 100644
--- a/drivers/isdn/hisax/l3ni1.h
+++ b/drivers/isdn/hisax/l3ni1.h
@@ -4,13 +4,13 @@
4 * 4 *
5 * Author Matt Henderson & Guy Ellis 5 * Author Matt Henderson & Guy Ellis
6 * Copyright by Traverse Technologies Pty Ltd, www.travers.com.au 6 * Copyright by Traverse Technologies Pty Ltd, www.travers.com.au
7 * 7 *
8 * This software may be used and distributed according to the terms 8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference. 9 * of the GNU General Public License, incorporated herein by reference.
10 * 10 *
11 * 2000.6.6 Initial implementation of routines for US NI1 11 * 2000.6.6 Initial implementation of routines for US NI1
12 * Layer 3 protocol based on the EURO/DSS1 D-channel protocol 12 * Layer 3 protocol based on the EURO/DSS1 D-channel protocol
13 * driver written by Karsten Keil et al. Thanks also for the 13 * driver written by Karsten Keil et al. Thanks also for the
14 * code provided by Ragnar Paulson. 14 * code provided by Ragnar Paulson.
15 * 15 *
16 */ 16 */
@@ -119,18 +119,18 @@
119 119
120/* l3ni1 specific data in l3 process */ 120/* l3ni1 specific data in l3 process */
121typedef struct 121typedef struct
122 { unsigned char invoke_id; /* used invoke id in remote ops, 0 = not active */ 122{ unsigned char invoke_id; /* used invoke id in remote ops, 0 = not active */
123 ulong ll_id; /* remebered ll id */ 123 ulong ll_id; /* remebered ll id */
124 u8 remote_operation; /* handled remote operation, 0 = not active */ 124 u8 remote_operation; /* handled remote operation, 0 = not active */
125 int proc; /* rememered procedure */ 125 int proc; /* rememered procedure */
126 ulong remote_result; /* result of remote operation for statcallb */ 126 ulong remote_result; /* result of remote operation for statcallb */
127 char uus1_data[35]; /* data send during alerting or disconnect */ 127 char uus1_data[35]; /* data send during alerting or disconnect */
128 } ni1_proc_priv; 128} ni1_proc_priv;
129 129
130/* l3dni1 specific data in protocol stack */ 130/* l3dni1 specific data in protocol stack */
131typedef struct 131typedef struct
132 { unsigned char last_invoke_id; /* last used value for invoking */ 132{ unsigned char last_invoke_id; /* last used value for invoking */
133 unsigned char invoke_used[32]; /* 256 bits for 256 values */ 133 unsigned char invoke_used[32]; /* 256 bits for 256 values */
134 } ni1_stk_priv; 134} ni1_stk_priv;
135 135
136#endif /* only l3dni1_process */ 136#endif /* only l3dni1_process */