| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (C) 2002 Intersil Americas Inc. |
|---|
| 3 | 4 | * Copyright (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu> |
|---|
| 4 | | - * |
|---|
| 5 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 6 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 7 | | - * the Free Software Foundation; either version 2 of the License |
|---|
| 8 | | - * |
|---|
| 9 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 10 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 | | - * GNU General Public License for more details. |
|---|
| 13 | | - * |
|---|
| 14 | | - * You should have received a copy of the GNU General Public License |
|---|
| 15 | | - * along with this program; if not, see <http://www.gnu.org/licenses/>. |
|---|
| 16 | | - * |
|---|
| 17 | 5 | */ |
|---|
| 18 | 6 | |
|---|
| 19 | 7 | #ifndef _ISLPCI_MGT_H |
|---|
| .. | .. |
|---|
| 111 | 99 | pimfor_header_t *header; /* payload header, points into buf */ |
|---|
| 112 | 100 | void *data; /* payload ex header, points into buf */ |
|---|
| 113 | 101 | struct work_struct ws; /* argument for schedule_work() */ |
|---|
| 114 | | - char buf[0]; /* fragment buffer */ |
|---|
| 102 | + char buf[]; /* fragment buffer */ |
|---|
| 115 | 103 | }; |
|---|
| 116 | 104 | |
|---|
| 117 | 105 | int |
|---|