aboutsummaryrefslogtreecommitdiffstats
path: root/binding/radio-binding.c
diff options
context:
space:
mode:
authorScott Murray <scottm@ghidorah.spiteful.org>2018-05-15 08:42:33 -0400
committerScott Murray <scott.murray@konsulko.com>2018-06-05 21:16:30 -0400
commita0b0ea9312d41a6f48d3a8e92d1d12f69a714bcd (patch)
tree87c98e031615ec6d2c004c75ff0257f625d95559 /binding/radio-binding.c
parenta7d712761a612c1f1199aaf4f31ad6d567e94edf (diff)
Always enable Kingfisher support
Make Kingfisher support unconditional to move all platform detection to run-time. This fixes the issue of violating the application build workflow with the SDK. Additionally, the Kingfisher detection has been improved with an added check for the Si4689 device-tree node to differentiate from a regular M3ULCB, and the Kingfisher output has been fixed for recent BSP changes. Change-Id: I28e18a065385205aefec974079b0a9c2d31059b6 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'binding/radio-binding.c')
-rw-r--r--binding/radio-binding.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/binding/radio-binding.c b/binding/radio-binding.c
index 220701b..8efe3bd 100644
--- a/binding/radio-binding.c
+++ b/binding/radio-binding.c
@@ -29,9 +29,7 @@
#include "radio_impl.h"
#include "radio_impl_rtlsdr.h"
-#ifdef HAVE_KINGFISHER
#include "radio_impl_kingfisher.h"
-#endif
static radio_impl_ops_t *radio_impl_ops;
@@ -475,13 +473,11 @@ static int init()
// Look for RTL-SDR USB adapter
radio_impl_ops = &rtlsdr_impl_ops;
rc = radio_impl_ops->init();
-#ifdef HAVE_KINGFISHER
if(rc != 0) {
// Look for Kingfisher Si4689
radio_impl_ops = &kf_impl_ops;
rc = radio_impl_ops->init();
}
-#endif
if(rc == 0) {
printf("%s found\n", radio_impl_ops->name);
radio_impl_ops->set_frequency_callback(freq_callback, NULL);