aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/efi
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-04-03 21:36:33 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-04-03 21:36:33 +0000
commit8368cf8f75949c1d998e41a4b98fc8d6db4332de (patch)
tree6ea4281e59072c649579ced46faa3cd8495197d4 /sys/boot/efi
parent85fcc22cf65a382feb2f9a4e8b37552cff057088 (diff)
downloadsrc-8368cf8f75949c1d998e41a4b98fc8d6db4332de.tar.gz
src-8368cf8f75949c1d998e41a4b98fc8d6db4332de.zip
Use __FBSDID rather than rcsid[].
Notes
Notes: svn path=/head/; revision=113038
Diffstat (limited to 'sys/boot/efi')
-rw-r--r--sys/boot/efi/libefi/copy.c6
-rw-r--r--sys/boot/efi/libefi/delay.c6
-rw-r--r--sys/boot/efi/libefi/efi_console.c6
-rw-r--r--sys/boot/efi/libefi/libefi.c6
-rw-r--r--sys/boot/efi/libefi/module.c6
-rw-r--r--sys/boot/efi/libefi/time.c6
-rw-r--r--sys/boot/efi/loader/conf.c6
-rw-r--r--sys/boot/efi/loader/main.c6
8 files changed, 16 insertions, 32 deletions
diff --git a/sys/boot/efi/libefi/copy.c b/sys/boot/efi/libefi/copy.c
index be1fcef1d1b6..7bc4edf7e15c 100644
--- a/sys/boot/efi/libefi/copy.c
+++ b/sys/boot/efi/libefi/copy.c
@@ -24,10 +24,8 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
/*
* MD primitives supporting placement of module data
diff --git a/sys/boot/efi/libefi/delay.c b/sys/boot/efi/libefi/delay.c
index 2a5b98b6c002..723f681c5286 100644
--- a/sys/boot/efi/libefi/delay.c
+++ b/sys/boot/efi/libefi/delay.c
@@ -24,10 +24,8 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <efi.h>
#include <efilib.h>
diff --git a/sys/boot/efi/libefi/efi_console.c b/sys/boot/efi/libefi/efi_console.c
index 254ef0dad6f4..c88462eb59c3 100644
--- a/sys/boot/efi/libefi/efi_console.c
+++ b/sys/boot/efi/libefi/efi_console.c
@@ -24,10 +24,8 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <efi.h>
#include <efilib.h>
diff --git a/sys/boot/efi/libefi/libefi.c b/sys/boot/efi/libefi/libefi.c
index abfa6a8265ac..563b533ab232 100644
--- a/sys/boot/efi/libefi/libefi.c
+++ b/sys/boot/efi/libefi/libefi.c
@@ -24,10 +24,8 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <efi.h>
#include <efilib.h>
diff --git a/sys/boot/efi/libefi/module.c b/sys/boot/efi/libefi/module.c
index 6c07e2863a53..7a3f4b2f1719 100644
--- a/sys/boot/efi/libefi/module.c
+++ b/sys/boot/efi/libefi/module.c
@@ -24,10 +24,8 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <stand.h>
diff --git a/sys/boot/efi/libefi/time.c b/sys/boot/efi/libefi/time.c
index 27192de7ab6f..3ca456e22b9b 100644
--- a/sys/boot/efi/libefi/time.c
+++ b/sys/boot/efi/libefi/time.c
@@ -38,10 +38,8 @@
*
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <efi.h>
#include <efilib.h>
diff --git a/sys/boot/efi/loader/conf.c b/sys/boot/efi/loader/conf.c
index 0e5407c77c27..145b16b86115 100644
--- a/sys/boot/efi/loader/conf.c
+++ b/sys/boot/efi/loader/conf.c
@@ -31,10 +31,8 @@
* $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <stand.h>
#include <efi.h>
diff --git a/sys/boot/efi/loader/main.c b/sys/boot/efi/loader/main.c
index bc1c044c96eb..58b962036677 100644
--- a/sys/boot/efi/loader/main.c
+++ b/sys/boot/efi/loader/main.c
@@ -25,10 +25,8 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <stand.h>
#include <string.h>