Let's make this structure private
Signed-off-by: Daniel Lezcano daniel.lezcano@linaro.org --- clocks.c | 13 +++++++++++++ clocks.h | 13 ------------- 2 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/clocks.c b/clocks.c index 3a93421..4d8a2be 100644 --- a/clocks.c +++ b/clocks.c @@ -28,6 +28,19 @@ static char clock_lines[MAX_LINES][128]; static int clock_line_no; static int old_clock_line_no;
+struct clock_info { + char name[NAME_MAX]; + int flags; + int rate; + int usecount; + int num_children; + int last_child; + int expanded; + int level; + struct clock_info *parent; + struct clock_info **children; +} *clocks_info; + static int locate_debugfs(char *clk_path) { const char *mtab = "/proc/mounts"; diff --git a/clocks.h b/clocks.h index 9ad9804..d66c061 100644 --- a/clocks.h +++ b/clocks.h @@ -15,17 +15,4 @@
extern int maxy;
-struct clock_info { - char name[NAME_MAX]; - int flags; - int rate; - int usecount; - int num_children; - int last_child; - int expanded; - int level; - struct clock_info *parent; - struct clock_info **children; -} *clocks_info; - extern int clock_init(void);