aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clocks.c4
-rw-r--r--clocks.h4
-rw-r--r--powerdebug.c5
-rw-r--r--sensor.h3
4 files changed, 10 insertions, 6 deletions
diff --git a/clocks.c b/clocks.c
index c86a39e..db219d8 100644
--- a/clocks.c
+++ b/clocks.c
@@ -332,7 +332,7 @@ int clock_init(void)
* found in the files. Then print the result to the text based interface
* Return 0 on success, < 0 otherwise
*/
-int read_and_print_clock_info(void)
+int clock_display(void)
{
if (read_clock_info())
return -1;
@@ -346,7 +346,7 @@ int read_and_print_clock_info(void)
* @clk : a name for a specific clock we want to show
* Return 0 on success, < 0 otherwise
*/
-int read_and_dump_clock_info(char *clk)
+int clock_dump(char *clk)
{
int ret;
diff --git a/clocks.h b/clocks.h
index d66c061..ab3bd36 100644
--- a/clocks.h
+++ b/clocks.h
@@ -13,6 +13,6 @@
* - initial API and implementation
*******************************************************************************/
-extern int maxy;
-
extern int clock_init(void);
+extern int clock_display(void);
+extern int clock_dump(char *clk);
diff --git a/powerdebug.c b/powerdebug.c
index 24db8c8..0eee7c5 100644
--- a/powerdebug.c
+++ b/powerdebug.c
@@ -19,6 +19,7 @@
#include "regulator.h"
#include "display.h"
#include "clocks.h"
+#include "sensor.h"
#include "powerdebug.h"
void usage(void)
@@ -275,7 +276,7 @@ int mainloop(struct powerdebug_options *options)
if (enter_hit)
clock_toggle_expanded();
- read_and_print_clock_info();
+ clock_display();
enter_hit = false;
} else
find_parents_for_clock(clkname_str,
@@ -317,7 +318,7 @@ static int powerdebug_dump(struct powerdebug_options *options)
regulator_dump();
if (options->clocks)
- read_and_dump_clock_info(options->clkname);
+ clock_dump(options->clkname);
if (options->sensors)
sensor_dump();
diff --git a/sensor.h b/sensor.h
index 8537149..4be90e6 100644
--- a/sensor.h
+++ b/sensor.h
@@ -13,3 +13,6 @@
* - initial API and implementation
*******************************************************************************/
+extern int sensor_dump(void);
+extern int sensor_display(void);
+extern int sensor_init(void);