hc
2024-01-31 f9004dbfff8a3fbbd7e2a88c8a4327c7f2f8e5b2
kernel/include/pcmcia/cistpl.h
....@@ -1,9 +1,6 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 /*
23 * cistpl.h
3
- *
4
- * This program is free software; you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License version 2 as
6
- * published by the Free Software Foundation.
74 *
85 * The initial developer of the original code is David A. Hinds
96 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
....@@ -164,7 +161,7 @@
164161
165162 typedef struct cistpl_funce_t {
166163 u_char type;
167
- u_char data[0];
164
+ u_char data[];
168165 } cistpl_funce_t;
169166
170167 /*======================================================================
....@@ -258,7 +255,7 @@
258255 u_char escape;
259256 u_char encrypt;
260257 u_char misc_features;
261
- u_char ccitt_code[0];
258
+ u_char ccitt_code[];
262259 } cistpl_data_serv_t;
263260
264261 typedef struct cistpl_fax_serv_t {
....@@ -268,7 +265,7 @@
268265 u_char encrypt;
269266 u_char features_0;
270267 u_char features_1;
271
- u_char ccitt_code[0];
268
+ u_char ccitt_code[];
272269 } cistpl_fax_serv_t;
273270
274271 typedef struct cistpl_voice_serv_t {