summaryrefslogtreecommitdiff
path: root/wct4xxp
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-27 16:17:41 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-27 16:17:41 +0000
commit01cb3933342bdb7139bdc446b098e4f3da374a47 (patch)
treebb59bd037fe364aa70e45de004e442ea7bad66a7 /wct4xxp
parentddd905567b80a43ef767b38f0a56bdc8f3236da0 (diff)
Merged revisions 1988 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4 ................ r1988 | kpfleming | 2007-01-27 10:16:03 -0600 (Sat, 27 Jan 2007) | 10 lines Merged revisions 1987 via svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.2 ........ r1987 | kpfleming | 2007-01-27 10:14:54 -0600 (Sat, 27 Jan 2007) | 2 lines properly reference the size symbol produced by objcopy ........ ................ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1989 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wct4xxp')
-rw-r--r--wct4xxp/base.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wct4xxp/base.c b/wct4xxp/base.c
index a86c8a0..28735c1 100644
--- a/wct4xxp/base.c
+++ b/wct4xxp/base.c
@@ -3107,8 +3107,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 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
@@ -3147,7 +3147,7 @@ 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;
+ embedded_firmware.size = *_binary_OCT6114_64D_ima_size;
#endif
break;
case 128:
@@ -3159,7 +3159,7 @@ 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;
+ embedded_firmware.size = *_binary_OCT6114_128D_ima_size;
#endif
break;
default: