diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2010-12-17 10:16:23 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-17 10:17:12 -0800 |
commit | 46814e08d80f87449b5adb3d549a3cae6f9f8148 (patch) | |
tree | ba09c310038c2b54043b04c8843fc35fbd62c26b /drivers/net/tehuti.c | |
parent | 29ba5fed1bbd09c2cba890798c8f9eaab251401d (diff) | |
download | talos-op-linux-46814e08d80f87449b5adb3d549a3cae6f9f8148.tar.gz talos-op-linux-46814e08d80f87449b5adb3d549a3cae6f9f8148.zip |
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>
Diffstat (limited to 'drivers/net/tehuti.c')
-rw-r--r-- | drivers/net/tehuti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tehuti.c b/drivers/net/tehuti.c index 8b3dc1eb4015..296000bf5a25 100644 --- a/drivers/net/tehuti.c +++ b/drivers/net/tehuti.c @@ -324,7 +324,7 @@ static int bdx_fw_load(struct bdx_priv *priv) ENTER; master = READ_REG(priv, regINIT_SEMAPHORE); 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) goto out; bdx_tx_push_desc_safe(priv, (char *)fw->data, fw->size); @@ -2510,4 +2510,4 @@ module_exit(bdx_module_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(BDX_DRV_DESC); -MODULE_FIRMWARE("tehuti/firmware.bin"); +MODULE_FIRMWARE("tehuti/bdx.bin"); |