From: Douglas Anderson Date: Wed, 25 Sep 2019 20:02:17 +0000 (-0700) Subject: kgdb: Remove unused DCPU_SSTEP definition X-Git-Tag: v5.10.7~3770^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f8b5b6d56b5fa4085c06945ea3e1ee5941ecfeb;p=platform%2Fkernel%2Flinux-rpi.git kgdb: Remove unused DCPU_SSTEP definition From doing a 'git log --patch kernel/debug', it looks as if DCPU_SSTEP has never been used. Presumably it used to be used back when kgdb was out of tree and nobody thought to delete the definition when the usage went away. Delete. Signed-off-by: Douglas Anderson Acked-by: Jason Wessel Acked-by: Will Deacon Signed-off-by: Daniel Thompson --- diff --git a/kernel/debug/debug_core.h b/kernel/debug/debug_core.h index b4a7c32..804b0fe 100644 --- a/kernel/debug/debug_core.h +++ b/kernel/debug/debug_core.h @@ -33,7 +33,6 @@ struct kgdb_state { #define DCPU_WANT_MASTER 0x1 /* Waiting to become a master kgdb cpu */ #define DCPU_NEXT_MASTER 0x2 /* Transition from one master cpu to another */ #define DCPU_IS_SLAVE 0x4 /* Slave cpu enter exception */ -#define DCPU_SSTEP 0x8 /* CPU is single stepping */ struct debuggerinfo_struct { void *debuggerinfo;