Skip to content

Commit 84aee94

Browse files
armandomontanezCQ Bot Account
authored and
CQ Bot Account
committed
pw_cpu_exception_armv7m: Deprecate old naming
Removes all old naming/references to pw_cpu_exception_armv7m. Please use the ARMv7-M targets in pw_cpu_exception_cortex_m. Change-Id: I4539dc0c03cfcfe330d9bc1e030c1fd75067bbb4 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/31060 Commit-Queue: Armando Montanez <amontanez@google.com> Reviewed-by: Ewout van Bekkum <ewout@google.com>
1 parent 1ee925c commit 84aee94

File tree

10 files changed

+0
-140
lines changed

10 files changed

+0
-140
lines changed

modules.gni

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ declare_args() {
3636
dir_pw_cli = get_path_info("pw_cli", "abspath")
3737
dir_pw_containers = get_path_info("pw_containers", "abspath")
3838
dir_pw_cpu_exception = get_path_info("pw_cpu_exception", "abspath")
39-
dir_pw_cpu_exception_armv7m =
40-
get_path_info("pw_cpu_exception_armv7m", "abspath")
4139
dir_pw_cpu_exception_cortex_m =
4240
get_path_info("pw_cpu_exception_cortex_m", "abspath")
4341
dir_pw_docgen = get_path_info("pw_docgen", "abspath")

pw_cpu_exception/public/pw_cpu_exception/entry.h

-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,3 @@
4242
// Note: applications should almost never invoke this directly; if you do, make
4343
// sure you know what you are doing.
4444
PW_EXTERN_C PW_NO_PROLOGUE void pw_cpu_exception_Entry(void);
45-
46-
// TODO(pwbug/311) Deprecated naming.
47-
PW_EXTERN_C PW_NO_PROLOGUE void pw_CpuExceptionEntry(void);

pw_cpu_exception/public/pw_cpu_exception/handler.h

-9
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,4 @@ PW_USED void pw_cpu_exception_DefaultHandler(pw_cpu_exception_State* state);
5252
// This calls the currently set handler.
5353
void pw_cpu_exception_HandleException(void* cpu_state);
5454

55-
// TODO(pwbug/311) Deprecated naming.
56-
typedef pw_cpu_exception_State pw_CpuExceptionState;
57-
#define pw_CpuExceptionSetHandler(...) pw_cpu_exception_SetHandler(__VA_ARGS__)
58-
#define pw_CpuExceptionRestoreDefaultHandler(...) \
59-
pw_cpu_exception_RestoreDefaultHandler(__VA_ARGS__)
60-
#define pw_CpuExceptionDefaultHandler(...) \
61-
pw_cpu_exception_DefaultHandler(__VA_ARGS__)
62-
#define pw_HandleCpuException(...) pw_cpu_exception_HandleException(__VA_ARGS__)
63-
6455
PW_EXTERN_C_END

pw_cpu_exception/public/pw_cpu_exception/support.h

-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
// backend.
2727
struct pw_cpu_exception_State;
2828

29-
// TODO(pwbug/311) Deprecated naming.
30-
typedef pw_cpu_exception_State pw_CpuExceptionState;
31-
3229
namespace pw::cpu_exception {
3330

3431
// Gets raw CPU state as a single contiguous block of data. The particular

pw_cpu_exception_armv7m/BUILD

-26
This file was deleted.

pw_cpu_exception_armv7m/BUILD.gn

-42
This file was deleted.

pw_cpu_exception_armv7m/CMakeLists.txt

-20
This file was deleted.

pw_cpu_exception_armv7m/public/pw_cpu_exception_armv7m/cpu_state.h

-16
This file was deleted.

pw_cpu_exception_armv7m/public/pw_cpu_exception_armv7m/proto_dump.h

-16
This file was deleted.

pw_cpu_exception_cortex_m/public/pw_cpu_exception_cortex_m/cpu_state.h

-3
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,3 @@ PW_PACKED(struct) pw_cpu_exception_State {
9595
// availability of the FPU registers a compile-time configuration when FPU
9696
// register support is added.
9797
};
98-
99-
// TODO(pwbug/311): Deprecated naming.
100-
typedef pw_cpu_exception_State pw_CpuExceptionState;

0 commit comments

Comments
 (0)