hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/net/dccp/ccid.h
....@@ -1,3 +1,4 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 #ifndef _CCID_H
23 #define _CCID_H
34 /*
....@@ -7,10 +8,6 @@
78 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
89 *
910 * CCID infrastructure
10
- *
11
- * This program is free software; you can redistribute it and/or modify it
12
- * under the terms of the GNU General Public License version 2 as
13
- * published by the Free Software Foundation.
1411 */
1512
1613 #include <net/sock.h>
....@@ -98,7 +95,7 @@
9895
9996 struct ccid {
10097 struct ccid_operations *ccid_ops;
101
- char ccid_priv[0];
98
+ char ccid_priv[];
10299 };
103100
104101 static inline void *ccid_priv(const struct ccid *ccid)