diff options
| author | tnn <tnn@NetBSD.org> | 2022-01-08 12:59:34 +0000 |
|---|---|---|
| committer | tnn <tnn@NetBSD.org> | 2022-01-08 12:59:34 +0000 |
| commit | faadc77dc78996687e6ef740fff7f0b8505276fc (patch) | |
| tree | 59e79aa93985c836a894e94f66a75f07f04e1e86 /sys/dev | |
| parent | c374721059c69752a7f28e620c887ad62455893d (diff) | |
place additional parens around multiline string constant to appease clang
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/pci_subr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/pci_subr.c b/sys/dev/pci/pci_subr.c index 5fe1432ba77..5824af4ee88 100644 --- a/sys/dev/pci/pci_subr.c +++ b/sys/dev/pci/pci_subr.c @@ -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 *regs, int extcapoff) } 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)", |
