diff options
Diffstat (limited to 'src/drivers/pc80/vga')
-rw-r--r-- | src/drivers/pc80/vga/vga.c | 2 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga.h | 13 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga_font_8x16.c | 2 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga_io.c | 2 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga_palette.c | 18 |
5 files changed, 25 insertions, 12 deletions
diff --git a/src/drivers/pc80/vga/vga.c b/src/drivers/pc80/vga/vga.c index 6e225e9786..6d0b674833 100644 --- a/src/drivers/pc80/vga/vga.c +++ b/src/drivers/pc80/vga/vga.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be> + * This file is part of the coreboot project. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free diff --git a/src/drivers/pc80/vga/vga.h b/src/drivers/pc80/vga/vga.h index a6fb2b4886..a1c566204c 100644 --- a/src/drivers/pc80/vga/vga.h +++ b/src/drivers/pc80/vga/vga.h @@ -1,3 +1,16 @@ +/* + * This file is part of the coreboot project. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + #ifndef _VGA_H #define _VGA_H diff --git a/src/drivers/pc80/vga/vga_font_8x16.c b/src/drivers/pc80/vga/vga_font_8x16.c index 3b0d288d66..b267c4a59f 100644 --- a/src/drivers/pc80/vga/vga_font_8x16.c +++ b/src/drivers/pc80/vga/vga_font_8x16.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be> + * This file is part of the coreboot project. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free diff --git a/src/drivers/pc80/vga/vga_io.c b/src/drivers/pc80/vga/vga_io.c index 455b0d331e..842419e0fd 100644 --- a/src/drivers/pc80/vga/vga_io.c +++ b/src/drivers/pc80/vga/vga_io.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be> + * This file is part of the coreboot project. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free diff --git a/src/drivers/pc80/vga/vga_palette.c b/src/drivers/pc80/vga/vga_palette.c index 2189361f58..748a7c9159 100644 --- a/src/drivers/pc80/vga/vga_palette.c +++ b/src/drivers/pc80/vga/vga_palette.c @@ -1,15 +1,15 @@ /* - * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be> + * This file is part of the coreboot project. * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the Free - * Software Foundation; either version 2 of the License, or (at your option) - * any later version. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. */ #include "vga.h" |