mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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:
parent
78ae9963e4
commit
e954aea60b
4 changed files with 17 additions and 13 deletions
|
@ -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.
|
||||
* 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.
|
||||
*
|
||||
* The GNU C Library is free software; you can redistribute it and/or
|
||||
|
|
|
@ -20,8 +20,7 @@
|
|||
#ifndef __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);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -18,17 +18,16 @@
|
|||
*/
|
||||
|
||||
#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 {
|
||||
// this structure should contain typematic settings, but LinuxBIOS
|
||||
// does not care yet.
|
||||
};
|
||||
|
||||
/* This function is called in the SuperIO code */
|
||||
void init_pc_keyboard(unsigned int port0, unsigned int port1, struct pc_keyboard *kbd);
|
||||
|
||||
|
||||
/* This function is called in the Super-IO code. */
|
||||
void init_pc_keyboard(unsigned int port0, unsigned int port1,
|
||||
struct pc_keyboard *kbd);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
/*
|
||||
* This file is part of the LinuxBIOS project.
|
||||
*
|
||||
* Copyright (C) 2007 coresystems GmbH
|
||||
* Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue