aboutsummaryrefslogtreecommitdiffstats
path: root/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71-e3000/0001-amd-xgbe-Fix-debug-output-of-max-channel-counts.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71-e3000/0001-amd-xgbe-Fix-debug-output-of-max-channel-counts.patch')
-rw-r--r--meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71-e3000/0001-amd-xgbe-Fix-debug-output-of-max-channel-counts.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71-e3000/0001-amd-xgbe-Fix-debug-output-of-max-channel-counts.patch b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71-e3000/0001-amd-xgbe-Fix-debug-output-of-max-channel-counts.patch
new file mode 100644
index 00000000..c05dbe95
--- /dev/null
+++ b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71-e3000/0001-amd-xgbe-Fix-debug-output-of-max-channel-counts.patch
@@ -0,0 +1,32 @@
+From e38545aac6c2a14c934331f7307f0b53e5ad70da Mon Sep 17 00:00:00 2001
+From: Tom Lendacky <thomas.lendacky@amd.com>
+Date: Wed, 23 May 2018 11:38:11 -0500
+Subject: [PATCH 01/95] amd-xgbe: Fix debug output of max channel counts
+
+A debug output print statement uses the wrong variable to output the
+maximum Rx channel count (cut and paste error, basically). Fix the
+statement to use the proper variable.
+
+Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
+Signed-off-by: David S. Miller <davem@davemloft.net>
+Signed-off-by: Sudheesh Mavila <sudheesh.mavila@amd.com>
+---
+ drivers/net/ethernet/amd/xgbe/xgbe-pci.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-pci.c b/drivers/net/ethernet/amd/xgbe/xgbe-pci.c
+index 82d1f41..7b63521 100644
+--- a/drivers/net/ethernet/amd/xgbe/xgbe-pci.c
++++ b/drivers/net/ethernet/amd/xgbe/xgbe-pci.c
+@@ -344,7 +344,7 @@ static int xgbe_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
+ if (netif_msg_probe(pdata)) {
+ dev_dbg(dev, "max tx/rx channel count = %u/%u\n",
+ pdata->tx_max_channel_count,
+- pdata->tx_max_channel_count);
++ pdata->rx_max_channel_count);
+ dev_dbg(dev, "max tx/rx hw queue count = %u/%u\n",
+ pdata->tx_max_q_count, pdata->rx_max_q_count);
+ }
+--
+2.7.4
+