This is an automated email from Gerrit.

"R. Diez <rdiez-2...@rd10.de>" just uploaded a new patch set to Gerrit, which 
you can find at https://review.openocd.org/c/openocd/+/9002

-- gerrit

commit 304f475773cba241daaf6c44a54658a11c471495
Author: R. Diez <rdiez-2...@rd10.de>
Date:   Sun Jul 20 10:39:02 2025 +0200

    configure.ac: Remove useless --enable-verbose-usb-io
    
    _DEBUG_USB_IO_ was not actually used anywhere.
    
    Change-Id: I1a98db7c7b03a89cc9347c0a66ec2106d2168c3f
    Signed-off-by: R. Diez <rdiez-2...@rd10.de>

diff --git a/configure.ac b/configure.ac
index 453cbcfb5a..1f80e5793b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -259,34 +259,21 @@ AS_IF([test "x$enable_gcov" = "xyes"], [
   AC_DEFINE([USE_GCOV], [0], [0 to leave coverage collection disabled.])
 ])
 
-# set default verbose options, overridden by following options
-debug_usb_io=no
+# set default for debug_usb_comms, overridden by following options
 debug_usb_comms=no
 
 AC_ARG_ENABLE([verbose],
   AS_HELP_STRING([--enable-verbose],
       [Enable verbose JTAG I/O messages (for debugging).]),
   [
-  debug_usb_io=$enableval
   debug_usb_comms=$enableval
   ], [])
 
-AC_ARG_ENABLE([verbose_usb_io],
-  AS_HELP_STRING([--enable-verbose-usb-io],
-      [Enable verbose USB I/O messages (for debugging)]),
-  [debug_usb_io=$enableval], [])
-
 AC_ARG_ENABLE([verbose_usb_comms],
   AS_HELP_STRING([--enable-verbose-usb-comms],
       [Enable verbose USB communication messages (for debugging)]),
   [debug_usb_comms=$enableval], [])
 
-AC_MSG_CHECKING([whether to enable verbose USB I/O messages]);
-AC_MSG_RESULT([$debug_usb_io])
-AS_IF([test "x$debug_usb_io" = "xyes"], [
-  AC_DEFINE([_DEBUG_USB_IO_],[1], [Print verbose USB I/O messages])
-])
-
 AC_MSG_CHECKING([whether to enable verbose USB communication messages]);
 AC_MSG_RESULT([$debug_usb_comms])
 AS_IF([test "x$debug_usb_comms" = "xyes"], [

-- 

Reply via email to