Re: [PATCH] kdb: Remove redundant function definitions/prototypes

2021-02-23 Thread Sumit Garg
On Tue, 23 Feb 2021 at 21:39, Doug Anderson wrote: > > Hi, > > On Tue, Feb 23, 2021 at 4:01 AM Sumit Garg wrote: > > > > @@ -103,7 +103,6 @@ extern int kdb_getword(unsigned long *, unsigned long, > > size_t); > > extern int kdb_putword(unsigned long, unsigned long, size_t); > > > > extern int

Re: [PATCH] kdb: Remove redundant function definitions/prototypes

2021-02-23 Thread Doug Anderson
Hi, On Tue, Feb 23, 2021 at 4:01 AM Sumit Garg wrote: > > @@ -103,7 +103,6 @@ extern int kdb_getword(unsigned long *, unsigned long, > size_t); > extern int kdb_putword(unsigned long, unsigned long, size_t); > > extern int kdbgetularg(const char *, unsigned long *); > -extern int kdbgetu64arg(

[PATCH] kdb: Remove redundant function definitions/prototypes

2021-02-23 Thread Sumit Garg
Cleanup kdb code to get rid of unused function definitions/prototypes. Signed-off-by: Sumit Garg --- kernel/debug/kdb/kdb_main.c| 2 +- kernel/debug/kdb/kdb_private.h | 3 --- kernel/debug/kdb/kdb_support.c | 18 -- 3 files changed, 1 insertion(+), 22 deletions(-) diff --g