From: David B. <dbr...@us...> - 2009-11-28 23:25:52
|
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 a398c85de748effa1ac2ea7f75cee127e1ddcd5b (commit) from 01f93137c4c9d2aedd57a715be46d2809c316811 (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 a398c85de748effa1ac2ea7f75cee127e1ddcd5b Author: David Brownell <dbr...@us...> Date: Sat Nov 28 14:19:45 2009 -0800 Cortex-M3: don't chain "struct arm" commands Those commands presume support for the "classic" set of CPU modes (FIQ, supervisor, IRQ, etc) ... which aren't supported by the ARMv7-M or ARMv6-M architectures. They also presume a "struct arm" base type, which this code doesn't use. We haven't cleaned up the register handling enough to be able to share any of those "base" methods. Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/target/cortex_m3.c b/src/target/cortex_m3.c index ad59c78..195a3b9 100644 --- a/src/target/cortex_m3.c +++ b/src/target/cortex_m3.c @@ -1931,9 +1931,6 @@ static const struct command_registration cortex_m3_exec_command_handlers[] = { }; static const struct command_registration cortex_m3_command_handlers[] = { { - .chain = arm_command_handlers, - }, - { .chain = armv7m_command_handlers, }, { ----------------------------------------------------------------------- Summary of changes: src/target/cortex_m3.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) hooks/post-receive -- Main OpenOCD repository |