diff options
author | Amit Arora <amit.arora@linaro.org> | 2010-10-28 11:31:24 +0530 |
---|---|---|
committer | Amit Arora <amit.arora@linaro.org> | 2010-10-28 11:31:24 +0530 |
commit | 6e774cd4e8eaebb1bd99909937427925dadc38e8 (patch) | |
tree | a2feb126ab0630144df266cd7091ac0ad1624f37 /clocks.h | |
parent | ed3e565b961db8dd95b098483d49b624268f3f97 (diff) | |
download | powerdebug-6e774cd4e8eaebb1bd99909937427925dadc38e8.tar.gz |
Fix coding style
Diffstat (limited to 'clocks.h')
-rw-r--r-- | clocks.h | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -19,20 +19,20 @@ #include <linux/magic.h> struct clock_info { - char name[NAME_MAX]; - int flags; - int rate; - int usecount; - int num_children; - int last_child; - struct clock_info *parent; - struct clock_info **children; + char name[NAME_MAX]; + int flags; + int rate; + int usecount; + int num_children; + int last_child; + struct clock_info *parent; + struct clock_info **children; } *clocks_info; char debugfs_mntpoint[1024]; char *likely_mpoints[] = { - "/sys/kernel/debug", - "/debug", - NULL + "/sys/kernel/debug", + "/debug", + NULL }; |