mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
add more
#ifndef lint static char rcsid[] = "$Id:$"; #endif to *.c source
This commit is contained in:
parent
7d651021b2
commit
69f93c224c
6 changed files with 22 additions and 0 deletions
|
@ -28,6 +28,11 @@
|
||||||
* Intel Architecture Software Developer's Manual
|
* Intel Architecture Software Developer's Manual
|
||||||
* Volume 3: System Programming
|
* Volume 3: System Programming
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef lint
|
||||||
|
static char rcsid[] = "$Id$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <cpu/p6/msr.h>
|
#include <cpu/p6/msr.h>
|
||||||
#include <cpu/p6/mtrr.h>
|
#include <cpu/p6/mtrr.h>
|
||||||
#include <cpu/p5/cpuid.h>
|
#include <cpu/p5/cpuid.h>
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef lint
|
||||||
|
static char rcsid[] = "$Id$";
|
||||||
|
#endif
|
||||||
|
|
||||||
//typedef void * va_list;
|
//typedef void * va_list;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#ifndef lint
|
||||||
|
static char rcsid[] = "$Id$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <cpu/p5/io.h>
|
#include <cpu/p5/io.h>
|
||||||
#include "serial_subr.h"
|
#include "serial_subr.h"
|
||||||
|
|
|
@ -9,6 +9,9 @@
|
||||||
* Wirzenius wrote this portably, Torvalds fucked it up :-)
|
* Wirzenius wrote this portably, Torvalds fucked it up :-)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef lint
|
||||||
|
static char rcsid[] = "$Id$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef lint
|
||||||
|
static char rcsid[] = "$Id$";
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <cpu/p5/io.h>
|
#include <cpu/p5/io.h>
|
||||||
#include <subr.h>
|
#include <subr.h>
|
||||||
/* much better keyboard init courtesy ollie@sis.com.tw
|
/* much better keyboard init courtesy ollie@sis.com.tw
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#ifndef lint
|
||||||
|
static char rcsid[] = "$Id$";
|
||||||
|
#endif
|
||||||
|
|
||||||
// just define these here. We may never need them anywhere else
|
// just define these here. We may never need them anywhere else
|
||||||
#define PNP_COM1_DEVICE 0x1
|
#define PNP_COM1_DEVICE 0x1
|
||||||
#define PNP_COM2_DEVICE 0x2
|
#define PNP_COM2_DEVICE 0x2
|
||||||
|
|
Loading…
Add table
Reference in a new issue