.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * pnpbios.h - contains local definitions |
---|
3 | 4 | */ |
---|
.. | .. |
---|
8 | 9 | * Original BIOS code (C) 1998 Christian Schmidt (chr.schmidt@tu-bs.de) |
---|
9 | 10 | * PnP handler parts (c) 1998 Tom Lees <tom@lpsg.demon.co.uk> |
---|
10 | 11 | * Minor reorganizations by David Hinds <dahinds@users.sourceforge.net> |
---|
11 | | - * |
---|
12 | | - * This program is free software; you can redistribute it and/or modify it |
---|
13 | | - * under the terms of the GNU General Public License as published by the |
---|
14 | | - * Free Software Foundation; either version 2, or (at your option) any |
---|
15 | | - * later version. |
---|
16 | | - * |
---|
17 | | - * This program is distributed in the hope that it will be useful, but |
---|
18 | | - * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
19 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
20 | | - * General Public License for more details. |
---|
21 | | - * |
---|
22 | | - * You should have received a copy of the GNU General Public License |
---|
23 | | - * along with this program; if not, write to the Free Software |
---|
24 | | - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
25 | 12 | */ |
---|
26 | 13 | |
---|
27 | 14 | /* |
---|
.. | .. |
---|
120 | 107 | __u32 eisa_id; |
---|
121 | 108 | __u8 type_code[3]; |
---|
122 | 109 | __u16 flags; |
---|
123 | | - __u8 data[0]; |
---|
| 110 | + __u8 data[]; |
---|
124 | 111 | }; |
---|
125 | 112 | #pragma pack() |
---|
126 | 113 | |
---|