From: Paul M. <le...@us...> - 2002-06-14 15:02:19
|
Update of /cvsroot/linux-mips/linux/arch/mips/vr41xx/common In directory usw-pr-cvs1:/tmp/cvs-serv20226/arch/mips/vr41xx/common Modified Files: Makefile Added Files: irq.c 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: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr41xx/common/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 13 Jun 2002 12:57:33 -0000 1.7 +++ Makefile 14 Jun 2002 15:02:14 -0000 1.8 @@ -15,7 +15,7 @@ O_TARGET := vr41xx.o -obj-y := int-handler.o reset.o +obj-y := int-handler.o reset.o irq.o obj-$(CONFIG_VR41XX_TIME_C) += time.o |