diff options
author | ian <ian> | 2023-08-17 16:40:14 +0000 |
---|---|---|
committer | ian <ian> | 2023-08-17 16:40:14 +0000 |
commit | ed8291e0143c5054a4d5e2164f8883596c81bda4 (patch) | |
tree | 0623609baea63402da10a2049574730632347a1a /sys | |
parent | b0f29fe3053452e7bf65fe0d48bed2f1915fcc1e (diff) |
kernel: cdefs: Fix macro indentation
git-svn-id: https://svn.vegaa.systems/svn/vega-Vega/trunk@32 a8a8aea2-181d-ee11-89e8-15fd0e089fc4
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/sys/cdefs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/include/sys/cdefs.h b/sys/include/sys/cdefs.h index e01502f..d0bbb72 100644 --- a/sys/include/sys/cdefs.h +++ b/sys/include/sys/cdefs.h @@ -127,12 +127,12 @@ * The above is the preferred style for this * macro. */ -#define __KERNEL_META(meta_str) \ - __asm__(".section .meta.note\n" \ - ".align 4\n" \ - ".string \"" meta_str "\"\n" \ - ".previous" \ - ) +#define __KERNEL_META(meta_str) \ + __asm__(".section .meta.note\n" \ + ".align 4\n" \ + ".string \"" meta_str "\"\n" \ + ".previous" \ + ) #define __MODULE_NAME(name) \ __used static const char *__THIS_MODULE = name |