Module Name: src Committed By: knakahara Date: Thu Aug 29 09:35:18 UTC 2019
Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: fix typo in error handling of ixgbe_allocate_legacy(). ok by msaitoh@n.o pullup-8, pullup-9 To generate a diff of this commit: cvs rdiff -u -r1.204 -r1.205 src/sys/dev/pci/ixgbe/ixgbe.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/ixgbe/ixgbe.c diff -u src/sys/dev/pci/ixgbe/ixgbe.c:1.204 src/sys/dev/pci/ixgbe/ixgbe.c:1.205 --- src/sys/dev/pci/ixgbe/ixgbe.c:1.204 Wed Aug 28 08:54:21 2019 +++ src/sys/dev/pci/ixgbe/ixgbe.c Thu Aug 29 09:35:18 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: ixgbe.c,v 1.204 2019/08/28 08:54:21 msaitoh Exp $ */ +/* $NetBSD: ixgbe.c,v 1.205 2019/08/29 09:35:18 knakahara Exp $ */ /****************************************************************************** @@ -6537,7 +6537,7 @@ alloc_retry: ixgbe_handle_que, que); if ((!(adapter->feat_en & IXGBE_FEATURE_LEGACY_TX) - & (txr->txr_si == NULL)) || (que->que_si == NULL)) { + && (txr->txr_si == NULL)) || (que->que_si == NULL)) { aprint_error_dev(dev, "could not establish software interrupts\n");