Fix author name in plugin metadata

Replace OpenClaw with Dr. Christian Giessen in plugin
metadata and copyright notice.
This commit is contained in:
Dr. Christian Giessen
2026-04-22 19:01:25 +00:00
parent 29dc1f1bd2
commit 8e14238f90

View File

@@ -1,5 +1,5 @@
/* asm_adsp219x.c -- Full Radare2 arch plugin for Analog Devices ADSP-219x
Copyright (C) 2026 OpenClaw
Copyright (C) 2026 Dr. Christian Giessen
This file implements the complete ADSP-219x Instruction Set (Types 1-37). */
@@ -152,7 +152,7 @@ static int archinfo (RArchSession *s, ut32 q)
}
const RArchPlugin r_arch_plugin_adsp219x = {
.meta = { .name = "adsp219x", .author = "OpenClaw", .desc = "ADSP-219x Master Plugin", .license = "LGPL-3.0-only" },
.meta = { .name = "adsp219x", .author = "Dr. Christian Giessen", .desc = "ADSP-219x Master Plugin", .license = "LGPL-3.0-only" },
.arch = "adsp219x", .bits = R_SYS_BITS_PACK(24), .endian = R_SYS_ENDIAN_BIG, .info = archinfo, .decode = (RArchPluginDecodeCallback)decode,
};