From ec2052799f860ea6432482dbc26f54b5819130d3 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Mon, 1 Sep 2014 13:58:40 +0200 Subject: Firmware data load from a static file instead of a library Signed-off-by: Paul Kocialkowski --- src/phLibNfc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/phLibNfc.c') diff --git a/src/phLibNfc.c b/src/phLibNfc.c index 6477a3f..7b9310a 100644 --- a/src/phLibNfc.c +++ b/src/phLibNfc.c @@ -47,7 +47,7 @@ *************************** Macro's ****************************************** */ -extern int dlopen_firmware(); +extern int open_firmware(); #ifndef STATIC_DISABLE #define STATIC static @@ -125,7 +125,7 @@ NFCSTATUS phLibNfc_Download_Mode () int phLibNfc_Load_Firmware_Image () { int status; - status = dlopen_firmware(); + status = open_firmware(); return status; } -- cgit v1.1