mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-08-05 17:40:16 +10:00
Some file miss completely the license tag. Add the SPDX tag, using the same GPL-2.0-or-later license of the OpenOCD project. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: I1fb51e722232d14f050458a820c3041de3dc9138 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7058 Tested-by: jenkins
21 lines
501 B
C
21 lines
501 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifndef OPENOCD_TARGET_OPENRISC_JSP_SERVER_H
|
|
#define OPENOCD_TARGET_OPENRISC_JSP_SERVER_H
|
|
|
|
#include "or1k_tap.h"
|
|
#include "or1k.h"
|
|
#include "or1k_du.h"
|
|
|
|
struct jsp_service {
|
|
char *banner;
|
|
struct or1k_jtag *jtag_info;
|
|
struct connection *connection;
|
|
};
|
|
|
|
int jsp_init(struct or1k_jtag *jtag_info, char *banner);
|
|
int jsp_register_commands(struct command_context *cmd_ctx);
|
|
void jsp_service_free(void);
|
|
|
|
#endif /* OPENOCD_TARGET_OPENRISC_JSP_SERVER_H */
|