Skip to content
Snippets Groups Projects
Commit ab0cfdce authored by Luis Gerhorst's avatar Luis Gerhorst Committed by Bernhard Heinloth
Browse files

Fix indentation

parent e93a5bd3
No related branches found
No related tags found
No related merge requests found
...@@ -198,7 +198,7 @@ static void create_csv_file(const char *name, ...@@ -198,7 +198,7 @@ static void create_csv_file(const char *name,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_PMCCNTR #ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_PMCCNTR
static void seq_write_pmccntr_csv_field(struct seq_file *seq, static void seq_write_pmccntr_csv_field(struct seq_file *seq,
struct checkpoint_record *cpr) struct checkpoint_record *cpr)
{ {
seq_printf(seq, "%u", cpr->pmccntr_ts.value); seq_printf(seq, "%u", cpr->pmccntr_ts.value);
} }
...@@ -206,7 +206,7 @@ static void seq_write_pmccntr_csv_field(struct seq_file *seq, ...@@ -206,7 +206,7 @@ static void seq_write_pmccntr_csv_field(struct seq_file *seq,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME_MONO_FAST #ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME_MONO_FAST
static void seq_write_ktime_mono_fast_csv_field(struct seq_file *seq, static void seq_write_ktime_mono_fast_csv_field(struct seq_file *seq,
struct checkpoint_record *cpr) struct checkpoint_record *cpr)
{ {
seq_printf(seq, "%llu", cpr->ktime_mono_fast); seq_printf(seq, "%llu", cpr->ktime_mono_fast);
} }
...@@ -214,7 +214,7 @@ static void seq_write_ktime_mono_fast_csv_field(struct seq_file *seq, ...@@ -214,7 +214,7 @@ static void seq_write_ktime_mono_fast_csv_field(struct seq_file *seq,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME #ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_KTIME
static void seq_write_ktime_csv_field(struct seq_file *seq, static void seq_write_ktime_csv_field(struct seq_file *seq,
struct checkpoint_record *cpr) struct checkpoint_record *cpr)
{ {
seq_printf(seq, "%llu", ktime_to_ns(cpr->ktime)); seq_printf(seq, "%llu", ktime_to_ns(cpr->ktime));
} }
...@@ -222,20 +222,20 @@ static void seq_write_ktime_csv_field(struct seq_file *seq, ...@@ -222,20 +222,20 @@ static void seq_write_ktime_csv_field(struct seq_file *seq,
#ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_NSTIMEOFDAY #ifdef CONFIG_MEASUREMORE_TIMESTAMP_TYPE_NSTIMEOFDAY
static void seq_write_nstimeofday_ns_csv_field(struct seq_file *seq, static void seq_write_nstimeofday_ns_csv_field(struct seq_file *seq,
struct checkpoint_record *cpr) struct checkpoint_record *cpr)
{ {
seq_printf(seq, "%ld", cpr->nstimeofday.tv_nsec); seq_printf(seq, "%ld", cpr->nstimeofday.tv_nsec);
} }
static void seq_write_nstimeofday_s_csv_field(struct seq_file *seq, static void seq_write_nstimeofday_s_csv_field(struct seq_file *seq,
struct checkpoint_record *cpr) struct checkpoint_record *cpr)
{ {
seq_printf(seq, "%ld", cpr->nstimeofday.tv_sec); seq_printf(seq, "%ld", cpr->nstimeofday.tv_sec);
} }
#endif #endif
static void seq_write_name_csv_field(struct seq_file *seq, static void seq_write_name_csv_field(struct seq_file *seq,
struct checkpoint_record *cpr) struct checkpoint_record *cpr)
{ {
seq_printf(seq, "%s", cpr->name); seq_printf(seq, "%s", cpr->name);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment