hc
2024-05-10 61598093bbdd283a7edc367d900f223070ead8d2
kernel/drivers/firmware/pcdp.h
....@@ -1,3 +1,4 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 /*
23 * Definitions for PCDP-defined console devices
34 *
....@@ -7,10 +8,6 @@
78 * (c) Copyright 2002, 2004 Hewlett-Packard Development Company, L.P.
89 * Khalid Aziz <khalid.aziz@hp.com>
910 * Bjorn Helgaas <bjorn.helgaas@hp.com>
10
- *
11
- * This program is free software; you can redistribute it and/or modify
12
- * it under the terms of the GNU General Public License version 2 as
13
- * published by the Free Software Foundation.
1411 */
1512
1613 #define PCDP_CONSOLE 0
....@@ -106,6 +103,6 @@
106103 u8 creator_id[4];
107104 u32 creator_rev;
108105 u32 num_uarts;
109
- struct pcdp_uart uart[0]; /* actual size is num_uarts */
106
+ struct pcdp_uart uart[]; /* actual size is num_uarts */
110107 /* remainder of table is pcdp_device structures */
111108 } __attribute__((packed));