Re: [Patch] cris: add missing declaration of kgdb_init() andbreakpoint()

From: Andrew Morton
Date: Thu Jun 02 2011 - 13:21:25 EST


On Thu, 2 Jun 2011 22:31:41 +0800 Am__rico Wang <xiyou.wangcong@xxxxxxxxx> wrote:

> On Wed, Jun 01, 2011 at 03:16:18PM -0700, Andrew Morton wrote:
> >On Sun, 22 May 2011 22:42:56 +0800
> >Am__rico Wang <xiyou.wangcong@xxxxxxxxx> wrote:
> >
> >> --- a/arch/cris/arch-v10/kernel/irq.c
> >> +++ b/arch/cris/arch-v10/kernel/irq.c
> >> @@ -20,6 +20,9 @@
> >> #define crisv10_mask_irq(irq_nr) (*R_VECT_MASK_CLR = 1 << (irq_nr));
> >> #define crisv10_unmask_irq(irq_nr) (*R_VECT_MASK_SET = 1 << (irq_nr));
> >>
> >> +extern void kgdb_init(void);
> >> +extern void breakpoint(void);
> >
> >They should be declared in a header file, please.
> >arch/cris/arch-v32/kernel/irq.c has a private declaration of
> >kgdb_init(), too.
> >
>
> Yeah, but I don't find a proper header to declare them.

Don't be afraid to create a new file! If that's the appropriate thing
to do, it's probably the correct thing to do.

z:/usr/src/25> find . -name kgdb.h
./arch/x86/include/asm/kgdb.h
./arch/blackfin/include/asm/kgdb.h
./arch/mn10300/include/asm/kgdb.h
./arch/arm/include/asm/kgdb.h
./arch/microblaze/include/asm/kgdb.h
./arch/sparc/include/asm/kgdb.h
./arch/powerpc/include/asm/kgdb.h
./arch/mips/include/asm/kgdb.h
./arch/sh/include/asm/kgdb.h
./include/config/have/arch/kgdb.h
./include/config/kgdb.h
./include/linux/kgdb.h

I'd follow the herd and create arch/cris/include/asm/kgdb.h.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/