diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
| commit | aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1 (patch) | |
| tree | 42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/fb | |
| parent | 0e9a61d26066fec3c8abc5e5b36039b7ed2db563 (diff) | |
Notes
Diffstat (limited to 'sys/dev/fb')
| -rw-r--r-- | sys/dev/fb/boot_font.c | 3 | ||||
| -rw-r--r-- | sys/dev/fb/fb.c | 5 | ||||
| -rw-r--r-- | sys/dev/fb/gfb.c | 3 | ||||
| -rw-r--r-- | sys/dev/fb/s3_pci.c | 6 | ||||
| -rw-r--r-- | sys/dev/fb/splash.c | 4 | ||||
| -rw-r--r-- | sys/dev/fb/tga.c | 3 | ||||
| -rw-r--r-- | sys/dev/fb/vga.c | 4 |
7 files changed, 21 insertions, 7 deletions
diff --git a/sys/dev/fb/boot_font.c b/sys/dev/fb/boot_font.c index 66167ba199b8..9b924e763e78 100644 --- a/sys/dev/fb/boot_font.c +++ b/sys/dev/fb/boot_font.c @@ -34,6 +34,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__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 81651512ffe8..d25de42b2363 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 <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_fb.h" #include <sys/param.h> diff --git a/sys/dev/fb/gfb.c b/sys/dev/fb/gfb.c index 4667dac260ad..63a317d8bb52 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 <sys/cdefs.h> +__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 7ad2071e8447..c47caa66a3b9 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 <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* Enable LFB on S3 cards that has only VESA 1.2 BIOS */ #include <sys/param.h> diff --git a/sys/dev/fb/splash.c b/sys/dev/fb/splash.c index 6f27f08b9ef4..daa0e5a96212 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 <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_splash.h" #include <sys/param.h> diff --git a/sys/dev/fb/tga.c b/sys/dev/fb/tga.c index 8ad6bb5b66bf..28fef02011d4 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 <sys/cdefs.h> +__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 945428f17935..461c20744348 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 <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_vga.h" #include "opt_fb.h" #include "opt_syscons.h" /* should be removed in the future, XXX */ |
