]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
ice: fix PCI device serial number to be lowercase values
authorPaul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
Sat, 16 May 2020 00:55:03 +0000 (17:55 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 22 Jun 2020 07:32:27 +0000 (09:32 +0200)
[ Upstream commit 1a9c561aa35534a03c0aa51c7fb1485731202a7c ]

Commit ceb2f00707f9 ("ice: Use pci_get_dsn()") changed the code to
use a new function to get the Device Serial Number. It also changed
the case of the filename for loading a package on a specific NIC
from lowercase to uppercase. Change the filename back to
lowercase since that is what we specified.

Fixes: ceb2f00707f9 ("ice: Use pci_get_dsn()")
Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/intel/ice/ice_main.c

index 599dab84403454c6f37777b90b420aaad0437209..545817dbff67f52e502048a335873f5294796cb2 100644 (file)
@@ -3126,7 +3126,7 @@ static char *ice_get_opt_fw_name(struct ice_pf *pf)
        if (!opt_fw_filename)
                return NULL;
 
-       snprintf(opt_fw_filename, NAME_MAX, "%sice-%016llX.pkg",
+       snprintf(opt_fw_filename, NAME_MAX, "%sice-%016llx.pkg",
                 ICE_DDP_PKG_PATH, dsn);
 
        return opt_fw_filename;