summaryrefslogtreecommitdiff
path: root/src/jtag/minidriver.h
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2009-12-04 16:00:43 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2009-12-08 10:29:58 +0100
commit97de520bc02f96f31063175fbc9cad034e84055d (patch)
treeaf141babaa1d5e09f15e53cc5806b98ecbf7b217 /src/jtag/minidriver.h
parent304af6e7d87af60a4c807b940ff6102243d465a4 (diff)
downloadopenocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.tar.gz
openocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.tar.bz2
openocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.tar.xz
openocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.zip
minidriver: fix inline capability of minidriver
Low latency low CPU processing power systems(embedded) will benefit greatly from being able to inline certain jtag_add_xxx() fn's. The trick is that this has to be done in such a way as to allow implementing an OpenOCD API with a shared library(eventually) on a PC hosted OpenOCD. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/jtag/minidriver.h')
-rw-r--r--src/jtag/minidriver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/minidriver.h b/src/jtag/minidriver.h
index ea780faf..2109c75f 100644
--- a/src/jtag/minidriver.h
+++ b/src/jtag/minidriver.h
@@ -47,7 +47,7 @@
// this header will be provided by the minidriver implementation,
// and it may provide additional declarations that must be defined.
-#include "minidriver_imp.h"
+#include <jtag/minidriver_imp.h>
int interface_jtag_add_ir_scan(
int num_fields, const struct scan_field* fields,