From c63dab466c1f033b389bd6ea609f595059544212 Mon Sep 17 00:00:00 2001 From: obrien Date: Sun, 24 Aug 2003 17:55:58 +0000 Subject: Use __FBSDID(). Also some minor style cleanups. --- sys/dev/fb/boot_font.c | 3 +++ sys/dev/fb/fb.c | 5 +++-- sys/dev/fb/gfb.c | 3 +++ sys/dev/fb/s3_pci.c | 6 +++--- sys/dev/fb/splash.c | 4 +++- sys/dev/fb/tga.c | 3 +++ sys/dev/fb/vga.c | 4 +++- 7 files changed, 21 insertions(+), 7 deletions(-) (limited to 'sys/dev/fb') diff --git a/sys/dev/fb/boot_font.c b/sys/dev/fb/boot_font.c index 66167ba..9b924e7 100644 --- a/sys/dev/fb/boot_font.c +++ b/sys/dev/fb/boot_font.c @@ -34,6 +34,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__FBSDID("$FreeBSD$"); + /* * This font lives in the public domain. It it a PC font, IBM encoding, * which was designed for use with syscons. diff --git a/sys/dev/fb/fb.c b/sys/dev/fb/fb.c index 8165151..d25de42 100644 --- a/sys/dev/fb/fb.c +++ b/sys/dev/fb/fb.c @@ -24,10 +24,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "opt_fb.h" #include diff --git a/sys/dev/fb/gfb.c b/sys/dev/fb/gfb.c index 4667dac..63a317d 100644 --- a/sys/dev/fb/gfb.c +++ b/sys/dev/fb/gfb.c @@ -23,6 +23,9 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. diff --git a/sys/dev/fb/s3_pci.c b/sys/dev/fb/s3_pci.c index 7ad2071..c47caa6 100644 --- a/sys/dev/fb/s3_pci.c +++ b/sys/dev/fb/s3_pci.c @@ -24,11 +24,11 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ - * */ +#include +__FBSDID("$FreeBSD$"); + /* Enable LFB on S3 cards that has only VESA 1.2 BIOS */ #include diff --git a/sys/dev/fb/splash.c b/sys/dev/fb/splash.c index 6f27f08..daa0e5a 100644 --- a/sys/dev/fb/splash.c +++ b/sys/dev/fb/splash.c @@ -23,9 +23,11 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "opt_splash.h" #include diff --git a/sys/dev/fb/tga.c b/sys/dev/fb/tga.c index 8ad6bb5..28fef02 100644 --- a/sys/dev/fb/tga.c +++ b/sys/dev/fb/tga.c @@ -24,6 +24,9 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__FBSDID("$FreeBSD$"); /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. * All rights reserved. diff --git a/sys/dev/fb/vga.c b/sys/dev/fb/vga.c index 945428f..461c207 100644 --- a/sys/dev/fb/vga.c +++ b/sys/dev/fb/vga.c @@ -26,9 +26,11 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + #include "opt_vga.h" #include "opt_fb.h" #include "opt_syscons.h" /* should be removed in the future, XXX */ -- cgit v1.1