| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | #ifndef _CCID_H |
|---|
| 2 | 3 | #define _CCID_H |
|---|
| 3 | 4 | /* |
|---|
| .. | .. |
|---|
| 7 | 8 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
|---|
| 8 | 9 | * |
|---|
| 9 | 10 | * 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. |
|---|
| 14 | 11 | */ |
|---|
| 15 | 12 | |
|---|
| 16 | 13 | #include <net/sock.h> |
|---|
| .. | .. |
|---|
| 98 | 95 | |
|---|
| 99 | 96 | struct ccid { |
|---|
| 100 | 97 | struct ccid_operations *ccid_ops; |
|---|
| 101 | | - char ccid_priv[0]; |
|---|
| 98 | + char ccid_priv[]; |
|---|
| 102 | 99 | }; |
|---|
| 103 | 100 | |
|---|
| 104 | 101 | static inline void *ccid_priv(const struct ccid *ccid) |
|---|