summaryrefslogtreecommitdiff
path: root/peripheral/libmraa/src/x86/x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'peripheral/libmraa/src/x86/x86.c')
-rw-r--r--peripheral/libmraa/src/x86/x86.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/peripheral/libmraa/src/x86/x86.c b/peripheral/libmraa/src/x86/x86.c
index b3a0ae5..2f1be3a 100644
--- a/peripheral/libmraa/src/x86/x86.c
+++ b/peripheral/libmraa/src/x86/x86.c
@@ -37,7 +37,6 @@
#include "x86/intel_sofia_3gr.h"
#include "x86/intel_cherryhills.h"
#include "x86/up.h"
-#include "x86/intel_gt_tuchuck.h"
mraa_platform_t
mraa_x86_platform()
@@ -87,12 +86,6 @@ mraa_x86_platform()
} else if (strncasecmp(line, "UP-CHT01", 8) == 0) {
platform_type = MRAA_UP;
plat = mraa_up_board();
- } else if (strncasecmp(line, "RVP", 3) == 0) {
- platform_type = MRAA_INTEL_GT_TUCHUCK;
- plat = mraa_gt_tuchuck_board();
- } else if (strncasecmp(line, "SDS", 3) == 0) {
- platform_type = MRAA_INTEL_GT_TUCHUCK;
- plat = mraa_gt_tuchuck_board();
} else {
syslog(LOG_ERR, "Platform not supported, not initialising");
platform_type = MRAA_UNKNOWN_PLATFORM;
@@ -133,8 +126,6 @@ mraa_x86_platform()
plat = mraa_intel_cherryhills();
#elif defined(xMRAA_UP)
plat = mraa_up_board();
- #elif defined(xMRAA_INTEL_GT_TUCHUCK)
- plat = mraa_gt_tuchuck_board();
#else
#error "Not using a valid platform value from mraa_platform_t - cannot compile"
#endif