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>
This commit is contained in:
committed by
David S. Miller
parent
29ba5fed1b
commit
46814e08d8
@@ -324,7 +324,7 @@ static int bdx_fw_load(struct bdx_priv *priv)
|
|||||||
ENTER;
|
ENTER;
|
||||||
master = READ_REG(priv, regINIT_SEMAPHORE);
|
master = READ_REG(priv, regINIT_SEMAPHORE);
|
||||||
if (!READ_REG(priv, regINIT_STATUS) && master) {
|
if (!READ_REG(priv, regINIT_STATUS) && master) {
|
||||||
rc = request_firmware(&fw, "tehuti/firmware.bin", &priv->pdev->dev);
|
rc = request_firmware(&fw, "tehuti/bdx.bin", &priv->pdev->dev);
|
||||||
if (rc)
|
if (rc)
|
||||||
goto out;
|
goto out;
|
||||||
bdx_tx_push_desc_safe(priv, (char *)fw->data, fw->size);
|
bdx_tx_push_desc_safe(priv, (char *)fw->data, fw->size);
|
||||||
@@ -2510,4 +2510,4 @@ module_exit(bdx_module_exit);
|
|||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_AUTHOR(DRIVER_AUTHOR);
|
MODULE_AUTHOR(DRIVER_AUTHOR);
|
||||||
MODULE_DESCRIPTION(BDX_DRV_DESC);
|
MODULE_DESCRIPTION(BDX_DRV_DESC);
|
||||||
MODULE_FIRMWARE("tehuti/firmware.bin");
|
MODULE_FIRMWARE("tehuti/bdx.bin");
|
||||||
|
Reference in New Issue
Block a user