wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 4 | * Marius Groeger <mgroeger@sysgo.de> |
| 5 | * |
| 6 | * (C) Copyright 2002 |
| 7 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 8 | * Alex Zuepke <azu@sysgo.de> |
| 9 | * |
| 10 | * See file CREDITS for list of people who contributed to this |
| 11 | * project. |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License as |
| 15 | * published by the Free Software Foundation; either version 2 of |
| 16 | * the License, or (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
wdenk | f70cbb2 | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 26 | * MA 02111-1307 USA |
| 27 | */ |
| 28 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 29 | #ifdef CONFIG_USE_IRQ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 30 | void do_irq (struct pt_regs *pt_regs) |
| 31 | { |
wdenk | 82db02f | 2004-07-11 22:19:26 +0000 | [diff] [blame] | 32 | } |
Andreas Engel | 2d4b253 | 2008-01-14 09:06:52 +0000 | [diff] [blame] | 33 | #endif |
wdenk | 82db02f | 2004-07-11 22:19:26 +0000 | [diff] [blame] | 34 | |
Marek Vasut | 16f6acd | 2012-10-03 08:54:12 +0000 | [diff] [blame^] | 35 | #if defined(CONFIG_TEGRA) |
Wolfgang Denk | 88bd743 | 2005-10-09 00:22:48 +0200 | [diff] [blame] | 36 | static ulong timestamp; |
| 37 | static ulong lastdec; |
| 38 | |
Jean-Christophe PLAGNIOL-VILLARD | 8c9fc00 | 2009-05-15 23:47:02 +0200 | [diff] [blame] | 39 | int timer_init (void) |
| 40 | { |
Allen Martin | e60ab6e | 2012-08-31 08:30:09 +0000 | [diff] [blame] | 41 | /* No timer routines for tegra as yet */ |
| 42 | lastdec = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 43 | timestamp = 0; |
| 44 | |
Marek Vasut | 16f6acd | 2012-10-03 08:54:12 +0000 | [diff] [blame^] | 45 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 46 | } |
wdenk | f2140d5 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 47 | #endif |