summaryrefslogtreecommitdiffstats
path: root/tools/cpu/nios2/clocks.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpu/nios2/clocks.h')
-rw-r--r--tools/cpu/nios2/clocks.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/cpu/nios2/clocks.h b/tools/cpu/nios2/clocks.h
deleted file mode 100644
index 9129c79a28..0000000000
--- a/tools/cpu/nios2/clocks.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2006 Kolja Waschk rtemsdev/ixo.de
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef __NIOS2GEN_CLOCKS_H
-#define __NIOS2GEN_CLOCKS_H 1
-
-#include "ptf.h"
-
-typedef struct clockdsc
-{
- char *name;
- char *cfgname;
- unsigned long freq;
- struct clockdsc *next;
-}
-clock_desc;
-
-clock_desc *find_clocks( struct ptf *ptf, struct ptf *cfg );
-
-#endif
-