diff options
| author | John Kacur <[email protected]> | 2009-09-24 16:02:18 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-09-24 19:27:51 +0000 |
| commit | 8b40f521cf1c9750eab0c04da9075e7484675e9c (patch) | |
| tree | ccf78010cc05ca0e38ebf6f443fd507c287c2fdf /tools/perf/util/module.h | |
| parent | perf annotate: Add the cmp_null function and make use of it (diff) | |
| download | kernel-8b40f521cf1c9750eab0c04da9075e7484675e9c.tar.gz kernel-8b40f521cf1c9750eab0c04da9075e7484675e9c.zip | |
perf tools: Protect header files with a consistent style
There was a colorful mix of header guards - standardize them.
Signed-off-by: John Kacur <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'tools/perf/util/module.h')
| -rw-r--r-- | tools/perf/util/module.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/module.h b/tools/perf/util/module.h index 8a592ef641ca..098e0412bc22 100644 --- a/tools/perf/util/module.h +++ b/tools/perf/util/module.h @@ -1,5 +1,5 @@ -#ifndef _PERF_MODULE_ -#define _PERF_MODULE_ 1 +#ifndef __PERF_MODULE_ +#define __PERF_MODULE_ 1 #include <linux/types.h> #include "../types.h" @@ -50,4 +50,4 @@ size_t mod_dso__fprintf(struct mod_dso *self, FILE *fp); struct module *mod_dso__find_module(struct mod_dso *self, const char *name); int mod_dso__load_modules(struct mod_dso *dso); -#endif /* _PERF_MODULE_ */ +#endif /* __PERF_MODULE_ */ |
