diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2011-06-08 23:30:00 +0200 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@free.fr> | 2011-06-08 23:30:00 +0200 |
commit | c45662bcfc89bd7f7ebaa9d325ce92ec83d39882 (patch) | |
tree | 9a6725aba63cfbc88ff06c69eb8284a108b4ba77 /clocks.c | |
parent | 2ef06e969eb9674b55d1b9704587505ed0e8198e (diff) | |
download | powerdebug-c45662bcfc89bd7f7ebaa9d325ce92ec83d39882.tar.gz |
move clock_info structure definition
Let's make this structure private
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'clocks.c')
-rw-r--r-- | clocks.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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"; |