From: Paul M. <le...@us...> - 2002-06-14 15:02:20
|
Update of /cvsroot/linux-mips/linux/include/asm-mips In directory usw-pr-cvs1:/tmp/cvs-serv20226/include/asm-mips Modified Files: vr41xx.h Log Message: Kill off the need for platform specific vr41xx_board_irq_init(). Calling vr41xx_board_irq_init() will be a nop on platforms that don't specifically assign a value to board_irq_init. See eagle for an example. Index: vr41xx.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips/vr41xx.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- vr41xx.h 7 Mar 2002 03:16:55 -0000 1.3 +++ vr41xx.h 14 Jun 2002 15:02:16 -0000 1.4 @@ -6,6 +6,7 @@ * Copyright (C) 1999 Michael Klar * Copyright (C) 2001, 2002 Paul Mundt * Copyright (C) 2002 MontaVista Software, Inc. + * Copyright (C) 2002 TimeSys Corp. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -65,6 +66,7 @@ int (*get_irq_number)(int irq); }; +extern void (*board_irq_init)(void); extern void vr41xx_board_irq_init(void); extern void vr41xx_cascade_irq(unsigned int irq, int (*get_irq_number)(int irq)); |