summaryrefslogtreecommitdiff
path: root/wctc4xxp/base.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-12-10 17:06:40 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-12-10 17:06:40 +0000
commit275e64dd87da798fc6758b6ec5d72f5525ace25c (patch)
tree5ccc3bdd9ab83295bdbc65dd767372c7051ddcd5 /wctc4xxp/base.c
parent7672aee40409d2053dc953a0b3b0eea08019f23d (diff)
fix firmware object names for non-hotplug firmware for wctc4xxp, wcte12xp and wctdm24xxp
add VPM reporting in 'devicetype' to wcte12xp fix VPM reporting in 'devicetype' for wctdm24xxp so it actually works git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@3388 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wctc4xxp/base.c')
-rw-r--r--wctc4xxp/base.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wctc4xxp/base.c b/wctc4xxp/base.c
index e30476a..4ecb1cc 100644
--- a/wctc4xxp/base.c
+++ b/wctc4xxp/base.c
@@ -1665,8 +1665,8 @@ static int __devinit wcdte_init_one(struct pci_dev *pdev, const struct pci_devic
struct firmware embedded_firmware;
const struct firmware *firmware = &embedded_firmware;
#if !defined(HOTPLUG_FIRMWARE)
- extern void _binary_tc400m_firmware_bin_size;
- extern u8 _binary_tc400m_firmware_bin_start[];
+ extern void _binary_zaptel_fw_tc400m_bin_size;
+ extern u8 _binary_zaptel_fw_tc400m_bin_start[];
#else
static const char tc400m_firmware[] = "zaptel-fw-tc400m.bin";
#endif
@@ -1755,8 +1755,8 @@ static int __devinit wcdte_init_one(struct pci_dev *pdev, const struct pci_devic
return -EIO;
}
#else
- embedded_firmware.data = _binary_tc400m_firmware_bin_start;
- embedded_firmware.size = (size_t) &_binary_tc400m_firmware_bin_size;
+ embedded_firmware.data = _binary_zaptel_fw_tc400m_bin_start;
+ embedded_firmware.size = (size_t) &_binary_zaptel_fw_tc400m_bin_size;
#endif
dte_firmware_ver = firmware->data[0];