Module Name: src
Committed By: tnn
Date: Sat Jan 8 12:59:34 UTC 2022
Modified Files:
src/sys/dev/pci: pci_subr.c
Log Message:
place additional parens around multiline string constant to appease clang
To generate a diff of this commit:
cvs rdiff -u -r1.238 -r1.239 src/sys/dev/pci/pci_subr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/pci_subr.c
diff -u src/sys/dev/pci/pci_subr.c:1.238 src/sys/dev/pci/pci_subr.c:1.239
--- src/sys/dev/pci/pci_subr.c:1.238 Fri Jan 7 06:57:57 2022
+++ src/sys/dev/pci/pci_subr.c Sat Jan 8 12:59:34 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_subr.c,v 1.238 2022/01/07 06:57:57 msaitoh Exp $ */
+/* $NetBSD: pci_subr.c,v 1.239 2022/01/08 12:59:34 tnn Exp $ */
/*
* Copyright (c) 1997 Zubin D. Dittia. All rights reserved.
@@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.238 2022/01/07 06:57:57 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.239 2022/01/08 12:59:34 tnn Exp $");
#ifdef _KERNEL_OPT
#include "opt_pci.h"
@@ -4369,8 +4369,8 @@ pci_conf_print_pl16g_cap(const pcireg_t
}
static const char * const pcie_receive_number_dp[] = {
- [0] = "Broadcast "
- "(Downstream Port Receiver and all Retimer Pseudo Port Receiver)",
+ [0] = ("Broadcast "
+ "(Downstream Port Receiver and all Retimer Pseudo Port Receiver)"),
[1] = "Rx(A) (Downstream Port Receiver)",
[2] = "Rx(B) (Retimer X or Z Upstream Pseudo Port Receiver)",
[3] = "Rx(C) (Retimer X or Z Downstream Pseudo Port Receiver)",