]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
cleanup: Standardize the header guard define's name
authorIngo Molnar <mingo@kernel.org>
Sat, 25 May 2024 12:45:31 +0000 (12:45 +0000)
committerIngo Molnar <mingo@kernel.org>
Mon, 27 May 2024 10:19:55 +0000 (12:19 +0200)
At some point during early development, the <linux/cleanup.h> header
must have been named <linux/guard.h>, as evidenced by the header
guard name:

  #ifndef __LINUX_GUARDS_H
  #define __LINUX_GUARDS_H

It ended up being <linux/cleanup.h>, but the old guard name for
a file name that was never upstream never changed.

Do that now - and while at it, also use the canonical _LINUX prefix,
instead of the less common __LINUX prefix.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/171664113181.10875.8784434350512348496.tip-bot2@tip-bot2
include/linux/cleanup.h

index c2d09bc4f9768cc3321dbb4490216fd0a2699320..cef68e8e09b67dad602c0a544c3ae5d7ea36e3c5 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0 */
-#ifndef __LINUX_GUARDS_H
-#define __LINUX_GUARDS_H
+#ifndef _LINUX_CLEANUP_H
+#define _LINUX_CLEANUP_H
 
 #include <linux/compiler.h>
 
@@ -247,4 +247,4 @@ __DEFINE_LOCK_GUARD_0(_name, _lock)
        { return class_##_name##_lock_ptr(_T); }
 
 
-#endif /* __LINUX_GUARDS_H */
+#endif /* _LINUX_CLEANUP_H */