diff options
author | Toomas Soome <[email protected]> | 2020-08-26 20:35:50 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-26 10:35:50 -0700 |
commit | ec0c480c14e4868cc1c020be55f8fafc6da62ca0 (patch) | |
tree | 5e94cae835ac44957141a75cd3dc567a6ea9ef5b | |
parent | 2dbad4471005784e97b65b60ecfdbf6dddc4b751 (diff) |
Remove pragma ident lines
The #pragma ident is a historical relic and not needed any more, this
pragma is actually unknown for common compilers and is only causing
trouble.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Matt Macy <[email protected]>
Signed-off-by: Toomas Soome <[email protected]>
Closes #10810
-rw-r--r-- | include/os/freebsd/spl/sys/acl_impl.h | 2 | ||||
-rw-r--r-- | include/os/freebsd/spl/sys/cmn_err.h | 2 | ||||
-rw-r--r-- | include/os/freebsd/spl/sys/extdirent.h | 2 | ||||
-rw-r--r-- | include/os/freebsd/spl/sys/list.h | 2 | ||||
-rw-r--r-- | include/os/freebsd/spl/sys/list_impl.h | 2 | ||||
-rw-r--r-- | include/os/freebsd/spl/sys/zmod.h | 2 | ||||
-rw-r--r-- | module/os/freebsd/spl/list.c | 2 |
7 files changed, 0 insertions, 14 deletions
diff --git a/include/os/freebsd/spl/sys/acl_impl.h b/include/os/freebsd/spl/sys/acl_impl.h index 8718f5bcf..1efbd6d73 100644 --- a/include/os/freebsd/spl/sys/acl_impl.h +++ b/include/os/freebsd/spl/sys/acl_impl.h @@ -26,8 +26,6 @@ #ifndef _SYS_ACL_IMPL_H #define _SYS_ACL_IMPL_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif diff --git a/include/os/freebsd/spl/sys/cmn_err.h b/include/os/freebsd/spl/sys/cmn_err.h index a75471f64..00d686439 100644 --- a/include/os/freebsd/spl/sys/cmn_err.h +++ b/include/os/freebsd/spl/sys/cmn_err.h @@ -31,8 +31,6 @@ #ifndef _SYS_CMN_ERR_H #define _SYS_CMN_ERR_H -#pragma ident "%Z%%M% %I% %E% SMI" - #if !defined(_ASM) #include <sys/_stdarg.h> #endif diff --git a/include/os/freebsd/spl/sys/extdirent.h b/include/os/freebsd/spl/sys/extdirent.h index 65ba11f34..b22e8e856 100644 --- a/include/os/freebsd/spl/sys/extdirent.h +++ b/include/os/freebsd/spl/sys/extdirent.h @@ -26,8 +26,6 @@ #ifndef _SYS_EXTDIRENT_H #define _SYS_EXTDIRENT_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif diff --git a/include/os/freebsd/spl/sys/list.h b/include/os/freebsd/spl/sys/list.h index 8339b6226..6db92ed42 100644 --- a/include/os/freebsd/spl/sys/list.h +++ b/include/os/freebsd/spl/sys/list.h @@ -26,8 +26,6 @@ #ifndef _SYS_LIST_H #define _SYS_LIST_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/list_impl.h> #ifdef __cplusplus diff --git a/include/os/freebsd/spl/sys/list_impl.h b/include/os/freebsd/spl/sys/list_impl.h index 9c42f8832..a6614f9a3 100644 --- a/include/os/freebsd/spl/sys/list_impl.h +++ b/include/os/freebsd/spl/sys/list_impl.h @@ -27,8 +27,6 @@ #ifndef _SYS_LIST_IMPL_H #define _SYS_LIST_IMPL_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/types.h> #ifdef __cplusplus diff --git a/include/os/freebsd/spl/sys/zmod.h b/include/os/freebsd/spl/sys/zmod.h index ba0267203..c606b1db5 100644 --- a/include/os/freebsd/spl/sys/zmod.h +++ b/include/os/freebsd/spl/sys/zmod.h @@ -27,8 +27,6 @@ #ifndef _ZMOD_H #define _ZMOD_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif diff --git a/module/os/freebsd/spl/list.c b/module/os/freebsd/spl/list.c index 21230b2ad..8796be4a9 100644 --- a/module/os/freebsd/spl/list.c +++ b/module/os/freebsd/spl/list.c @@ -23,8 +23,6 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * Generic doubly-linked list implementation */ |