Mercurial > ecos-v3_0-branch
changeset 2777:60a9c9b25060
Fix another init priority
| author | bartv |
|---|---|
| date | Mon, 09 Feb 2009 21:07:11 +0000 |
| parents | 7dab99db1476 |
| children | 533d4be34048 |
| files | packages/devs/watchdog/arm/lpc2xxx/current/ChangeLog packages/devs/watchdog/arm/lpc2xxx/current/src/watchdog_lpc2xxx.cxx |
| diffstat | 2 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/devs/watchdog/arm/lpc2xxx/current/ChangeLog +++ b/packages/devs/watchdog/arm/lpc2xxx/current/ChangeLog @@ -1,3 +1,8 @@ +2009-02-09 Bart Veer <bartv@ecoscentric.com> + + * src/watchdog_lpc2xxx.cxx: switch init priority to + CYG_INIT_INTERRUPTS. + 2008-11-23 Sergei Gavrikov <sergei.gavrikov@gmail.com> Andrew Lunn <andrew@lunn.ch> @@ -21,7 +26,7 @@ 2004-10-04 Jani Monoses <jani@iv.ro> // ####GPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009 Free Software Foundation, Inc. // // 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
--- a/packages/devs/watchdog/arm/lpc2xxx/current/src/watchdog_lpc2xxx.cxx +++ b/packages/devs/watchdog/arm/lpc2xxx/current/src/watchdog_lpc2xxx.cxx @@ -8,7 +8,7 @@ // ####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009 Free Software Foundation, Inc. // // eCos is free software; you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free @@ -120,7 +120,7 @@ isr(cyg_vector vector, CYG_ADDRWORD data //========================================================================== -static CYGBLD_ATTRIB_INIT_PRI(CYG_INIT_DRIVERS) +static CYGBLD_ATTRIB_INIT_PRI(CYG_INIT_INTERRUPTS) Cyg_Interrupt wdint( CYGNUM_HAL_INTERRUPT_WD, INT_PRIO,
