jtag: remove file driver.h
The only purpose of include file driver.h was to expose the API to register the adapter's commands. Move the prototype in adapter.h, already used by openocd.c. Change-Id: Ie1090c60ef9e5bac5ea187c87bed6e7b08d9671c Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/6645 Tested-by: jenkins Reviewed-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
This commit is contained in:
parent
3c50288612
commit
ac1a632ba1
|
@ -25,7 +25,6 @@ include %D%/drivers/Makefile.am
|
||||||
%D%/tcl.c \
|
%D%/tcl.c \
|
||||||
%D%/swim.c \
|
%D%/swim.c \
|
||||||
%D%/commands.h \
|
%D%/commands.h \
|
||||||
%D%/driver.h \
|
|
||||||
%D%/interface.h \
|
%D%/interface.h \
|
||||||
%D%/interfaces.h \
|
%D%/interfaces.h \
|
||||||
%D%/minidriver.h \
|
%D%/minidriver.h \
|
||||||
|
|
|
@ -886,7 +886,7 @@ static const struct command_registration interface_command_handlers[] = {
|
||||||
* @todo Remove internal assumptions that all debug adapters use JTAG for
|
* @todo Remove internal assumptions that all debug adapters use JTAG for
|
||||||
* transport. Various types and data structures are not named generically.
|
* transport. Various types and data structures are not named generically.
|
||||||
*/
|
*/
|
||||||
int interface_register_commands(struct command_context *ctx)
|
int adapter_register_commands(struct command_context *ctx)
|
||||||
{
|
{
|
||||||
return register_commands(ctx, NULL, interface_command_handlers);
|
return register_commands(ctx, NULL, interface_command_handlers);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
/*
|
/*
|
||||||
|
* Copyright (C) 2005 by Dominic Rath <Dominic.Rath@gmx.de>
|
||||||
* Copyright (c) 2018 Pengutronix, Oleksij Rempel <kernel@pengutronix.de>
|
* Copyright (c) 2018 Pengutronix, Oleksij Rempel <kernel@pengutronix.de>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -12,6 +13,9 @@
|
||||||
|
|
||||||
struct command_context;
|
struct command_context;
|
||||||
|
|
||||||
|
/** Register the adapter's commands */
|
||||||
|
int adapter_register_commands(struct command_context *ctx);
|
||||||
|
|
||||||
/** Initialize debug adapter upon startup. */
|
/** Initialize debug adapter upon startup. */
|
||||||
int adapter_init(struct command_context *cmd_ctx);
|
int adapter_init(struct command_context *cmd_ctx);
|
||||||
|
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
/***************************************************************************
|
|
||||||
* Copyright (C) 2005 by Dominic Rath *
|
|
||||||
* Dominic.Rath@gmx.de *
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or modify *
|
|
||||||
* it under the terms of the GNU General Public License as published by *
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
* (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
* This program is distributed in the hope that it will be useful, *
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
||||||
* GNU General Public License for more details. *
|
|
||||||
* *
|
|
||||||
* You should have received a copy of the GNU General Public License *
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
#ifndef OPENOCD_JTAG_DRIVER_H
|
|
||||||
#define OPENOCD_JTAG_DRIVER_H
|
|
||||||
|
|
||||||
struct command_context;
|
|
||||||
|
|
||||||
int interface_register_commands(struct command_context *ctx);
|
|
||||||
|
|
||||||
#endif /* OPENOCD_JTAG_DRIVER_H */
|
|
|
@ -28,7 +28,6 @@
|
||||||
|
|
||||||
#include "openocd.h"
|
#include "openocd.h"
|
||||||
#include <jtag/adapter.h>
|
#include <jtag/adapter.h>
|
||||||
#include <jtag/driver.h>
|
|
||||||
#include <jtag/jtag.h>
|
#include <jtag/jtag.h>
|
||||||
#include <transport/transport.h>
|
#include <transport/transport.h>
|
||||||
#include <helper/util.h>
|
#include <helper/util.h>
|
||||||
|
@ -313,7 +312,7 @@ static struct command_context *setup_command_handler(Jim_Interp *interp)
|
||||||
&log_register_commands,
|
&log_register_commands,
|
||||||
&rtt_server_register_commands,
|
&rtt_server_register_commands,
|
||||||
&transport_register_commands,
|
&transport_register_commands,
|
||||||
&interface_register_commands,
|
&adapter_register_commands,
|
||||||
&target_register_commands,
|
&target_register_commands,
|
||||||
&flash_register_commands,
|
&flash_register_commands,
|
||||||
&nand_register_commands,
|
&nand_register_commands,
|
||||||
|
|
Loading…
Reference in New Issue