summaryrefslogtreecommitdiff
path: root/wct4xxp
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-29 19:20:32 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-29 19:20:32 +0000
commit3cfaa806f93bae282e4bff6aa3aa138c99f499fb (patch)
tree0e6cc1c5135cae784c6f5aeb5ab1fa3d96f4e219 /wct4xxp
parent39b12e72d67dac8ce6558c0d8b02e3cbbf9aee94 (diff)
_really_ fix the non-hotplug firmware case
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@1996 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wct4xxp')
-rw-r--r--wct4xxp/base.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/wct4xxp/base.c b/wct4xxp/base.c
index 2128824..533a651 100644
--- a/wct4xxp/base.c
+++ b/wct4xxp/base.c
@@ -2679,8 +2679,8 @@ 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_ima_size;
- extern const u32 *_binary_OCT6114_128D_ima_size;
+ extern void *_binary_OCT6114_64D_ima_size;
+ extern void *_binary_OCT6114_128D_ima_size;
extern u8 _binary_OCT6114_64D_ima_start[];
extern u8 _binary_OCT6114_128D_ima_start[];
#endif
@@ -2719,7 +2719,13 @@ static void t4_vpm450_init(struct t4 *wc)
}
#else
embedded_firmware.data = _binary_OCT6114_64D_ima_start;
- embedded_firmware.size = *_binary_OCT6114_64D_ima_size;
+ /* Yes... this is weird. objcopy gives us a symbol containing
+ the size of the firmware, not a pointer a variable containing
+ the size. The only way we can get the value of the symbol
+ is to take its address, so we define it as a pointer and
+ then cast that value to the proper type.
+ */
+ embedded_firmware.size = (size_t) _binary_OCT6114_64D_ima_size;
#endif
break;
case 128:
@@ -2731,7 +2737,13 @@ static void t4_vpm450_init(struct t4 *wc)
}
#else
embedded_firmware.data = _binary_OCT6114_128D_ima_start;
- embedded_firmware.size = *_binary_OCT6114_128D_ima_size;
+ /* Yes... this is weird. objcopy gives us a symbol containing
+ the size of the firmware, not a pointer a variable containing
+ the size. The only way we can get the value of the symbol
+ is to take its address, so we define it as a pointer and
+ then cast that value to the proper type.
+ */
+ embedded_firmware.size = (size_t) _binary_OCT6114_128D_ima_size;
#endif
break;
default: