summaryrefslogtreecommitdiff
path: root/wct4xxp
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-22 21:12:35 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-22 21:12:35 +0000
commit96dcba113ec112c338dd44b78ec7bfab826f052d (patch)
tree4fd730f11b68d6213cd0a28a71d200283cafdef4 /wct4xxp
parent180b2e7f91256cd0c81f32fa8befaad00ee5731e (diff)
make the non-hotplug firmware case actually compile again
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@1891 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wct4xxp')
-rw-r--r--wct4xxp/base.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/wct4xxp/base.c b/wct4xxp/base.c
index 6608a35..0c5c64b 100644
--- a/wct4xxp/base.c
+++ b/wct4xxp/base.c
@@ -2679,10 +2679,10 @@ static void t4_vpm450_init(struct t4 *wc)
struct firmware embedded_firmware;
const struct firmware *firmware = &embedded_firmware;
#if !defined(HOTPLUG_FIRMWARE)
- extern const u32 _binary_OCT6114_64D_size;
- extern const u32 _binary_OCT6114_128D_size;
- extern const u8 *_binary_OCT6114_64D_start;
- extern const u8 *_binary_OCT6114_128D_start;
+ extern const u32 _binary_OCT6114_64D_ima_size;
+ extern const u32 _binary_OCT6114_128D_ima_size;
+ extern u8 _binary_OCT6114_64D_ima_start;
+ extern u8 _binary_OCT6114_128D_ima_start;
#endif
if (!vpmsupport) {
@@ -2718,8 +2718,8 @@ static void t4_vpm450_init(struct t4 *wc)
return;
}
#else
- embedded_firmware.data = _binary_OCT6114D_64D_ima_start;
- embedded_firmware.size = _binary_OCT6114D_64D_ima_start;
+ embedded_firmware.data = &_binary_OCT6114_64D_ima_start;
+ embedded_firmware.size = _binary_OCT6114_64D_ima_size;
#endif
break;
case 128:
@@ -2730,8 +2730,8 @@ static void t4_vpm450_init(struct t4 *wc)
return;
}
#else
- embedded_firmware.data = _binary_OCT6114D_128D_ima_start;
- embedded_firmware.size = _binary_OCT6114D_128D_ima_start;
+ embedded_firmware.data = &_binary_OCT6114_128D_ima_start;
+ embedded_firmware.size = _binary_OCT6114_128D_ima_size;
#endif
break;
default: