aboutsummaryrefslogtreecommitdiff
path: root/clocks.h
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@free.fr>2011-03-26 22:06:20 +0100
committerAmit Kucheria <amit.kucheria@linaro.org>2011-04-04 03:22:46 +0300
commitef32319dfd87a7c1cc16d6598b90d8cc54242951 (patch)
treec3ea17f513e8868f3f70425df5e5615aa9a89b76 /clocks.h
parentf0e0665c69f430b0c42e5dc6b8a6b7e5957da030 (diff)
Remove pointless function definitions
By moving the functions in the right order in the file, we can get ride of their definitions and we can set them static. Signed-off-by: Daniel Lezcano <daniel.lezcano@free.fr> Signed-off-by: Amit Kucheria <amit.kucheria@linaro.org>
Diffstat (limited to 'clocks.h')
-rw-r--r--clocks.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/clocks.h b/clocks.h
index cc17e86..9ad9804 100644
--- a/clocks.h
+++ b/clocks.h
@@ -13,16 +13,8 @@
* - initial API and implementation
*******************************************************************************/
-#include <sys/stat.h>
-#include <sys/vfs.h>
-#include <errno.h>
-#include <sys/stat.h>
-#include <linux/magic.h>
-
extern int maxy;
-#define MAX_LINES 120
-
struct clock_info {
char name[NAME_MAX];
int flags;
@@ -36,14 +28,4 @@ struct clock_info {
struct clock_info **children;
} *clocks_info;
-char clock_lines[MAX_LINES][128];
-int clock_line_no;
-int old_clock_line_no;
-
extern int clock_init(void);
-
-void add_clock_details_recur(struct clock_info *clk, int hrow, int selected);
-void destroy_clocks_info(void);
-void destroy_clocks_info_recur(struct clock_info *clock);
-void collapse_all_subclocks(struct clock_info *clock);
-struct clock_info *find_clock(struct clock_info *clk, char *clkarg);