|
From: openocd-gerrit <ope...@us...> - 2025-08-24 05:05:35
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Main OpenOCD repository".
The branch, master has been updated
via 443139db002d597510bb744bece291c2703c13a3 (commit)
from 1879145bff1b4827f301eeb5039a6a722f3b2d2f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 443139db002d597510bb744bece291c2703c13a3
Author: Antonio Borneo <bor...@gm...>
Date: Wed Aug 20 11:33:53 2025 +0200
jtag: keep the list of drivers in alphabetic order
The introduction of the driver ch347 breaks the order.
Fix it.
Change-Id: I868fd3ec0b6694fb4bb7b28db0083ab1a9409b1c
Signed-off-by: Antonio Borneo <bor...@gm...>
Reviewed-on: https://review.openocd.org/c/openocd/+/9089
Reviewed-by: Matthias Jentsch <in...@ea...>
Reviewed-by: Tomas Vanek <va...@fb...>
Reviewed-by: ZhiYuanNJ <871...@qq...>
Tested-by: jenkins
diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c
index 597196c0e..e29937b58 100644
--- a/src/jtag/interfaces.c
+++ b/src/jtag/interfaces.c
@@ -59,6 +59,9 @@ struct adapter_driver *adapter_drivers[] = {
#if BUILD_BUS_PIRATE == 1
&buspirate_adapter_driver,
#endif
+#if BUILD_CH347 == 1
+ &ch347_adapter_driver,
+#endif
#if BUILD_CMSIS_DAP_USB == 1 || BUILD_CMSIS_DAP_HID == 1
&cmsis_dap_adapter_driver,
#endif
@@ -159,8 +162,6 @@ struct adapter_driver *adapter_drivers[] = {
&xlnx_pcie_xvc_adapter_driver,
&xlnx_axi_xvc_adapter_driver,
#endif
-#if BUILD_CH347 == 1
- &ch347_adapter_driver,
-#endif
+
NULL,
};
-----------------------------------------------------------------------
Summary of changes:
src/jtag/interfaces.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--
Main OpenOCD repository
|