Skip to content

Commit 46814e0

Browse files
bwhacksdavem330
authored andcommitted
tehuti: Firmware filename is tehuti/bdx.bin
My conversion of tehuti to use request_firmware() was confused about the filename of the firmware blob. Change the driver to match the blob. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Andy Gospodarek <andy@greyhouse.net> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 29ba5fe commit 46814e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/net/tehuti.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ static int bdx_fw_load(struct bdx_priv *priv)
324324
ENTER;
325325
master = READ_REG(priv, regINIT_SEMAPHORE);
326326
if (!READ_REG(priv, regINIT_STATUS) && master) {
327-
rc = request_firmware(&fw, "tehuti/firmware.bin", &priv->pdev->dev);
327+
rc = request_firmware(&fw, "tehuti/bdx.bin", &priv->pdev->dev);
328328
if (rc)
329329
goto out;
330330
bdx_tx_push_desc_safe(priv, (char *)fw->data, fw->size);
@@ -2510,4 +2510,4 @@ module_exit(bdx_module_exit);
25102510
MODULE_LICENSE("GPL");
25112511
MODULE_AUTHOR(DRIVER_AUTHOR);
25122512
MODULE_DESCRIPTION(BDX_DRV_DESC);
2513-
MODULE_FIRMWARE("tehuti/firmware.bin");
2513+
MODULE_FIRMWARE("tehuti/bdx.bin");

0 commit comments

Comments
 (0)