Various cosmetic fixes (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@286 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Uwe Hermann 2007-04-23 11:08:10 +00:00
parent 78ae9963e4
commit e954aea60b
4 changed files with 17 additions and 13 deletions

View file

@ -1,10 +1,14 @@
/* This file was taken from the GNU C Library, CVS rev. 1.156, /*
* and modified for use by the LinuxBIOS project. * This file is part of the LinuxBIOS project.
*
* It is based on elf/elf.h from the GNU C Library, CVS rev. 1.156.
*
* Modifications are:
* Copyright (C) 2001 Eric Biederman <ebiederman@lnxi.com>
*/ */
/* This file defines standard ELF types, structures, and macros. /* This file defines standard ELF types, structures, and macros.
* Copyright (C) 1995-2003,2004,2005,2006,2007 Free Software Foundation, Inc. * Copyright (C) 1995-2003,2004,2005,2006,2007 Free Software Foundation, Inc.
* Copyright (C) 2001 Eric Biederman <ebiederman@lnxi.com>
* This file is part of the GNU C Library. * This file is part of the GNU C Library.
* *
* The GNU C Library is free software; you can redistribute it and/or * The GNU C Library is free software; you can redistribute it and/or

View file

@ -20,8 +20,7 @@
#ifndef __ISA_DMA_H #ifndef __ISA_DMA_H
#define __ISA_DMA_H #define __ISA_DMA_H
/* This function is called in the southbridge code */ /* This function is called in the southbridge code. */
void isa_dma_init(void); void isa_dma_init(void);
#endif #endif

View file

@ -18,17 +18,16 @@
*/ */
#ifndef __KEYBOARD_H #ifndef __KEYBOARD_H
#define __KEYBOARD_H 1 #define __KEYBOARD_H
/* TODO: This structure should contain typematic settings, but LinuxBIOS
* does not care yet.
*/
struct pc_keyboard { struct pc_keyboard {
// this structure should contain typematic settings, but LinuxBIOS
// does not care yet.
}; };
/* This function is called in the SuperIO code */ /* This function is called in the Super-IO code. */
void init_pc_keyboard(unsigned int port0, unsigned int port1, struct pc_keyboard *kbd); void init_pc_keyboard(unsigned int port0, unsigned int port1,
struct pc_keyboard *kbd);
#endif #endif

View file

@ -1,4 +1,6 @@
/* /*
* This file is part of the LinuxBIOS project.
*
* Copyright (C) 2007 coresystems GmbH * Copyright (C) 2007 coresystems GmbH
* Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH * Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH
* *