mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
remove trivial file as suggested by Uwe.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@382 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
0ef38480ef
commit
a28d25a93d
3 changed files with 10 additions and 32 deletions
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
#include <device/pnp_def.h>
|
#include <device/pnp.h>
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
|
|
||||||
/* very low level pnp manipulation intended for stage 0 or 1 */
|
/* very low level pnp manipulation intended for stage 0 or 1 */
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
|
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <device/pnp_def.h>
|
|
||||||
|
|
||||||
/* very low level pnp manipulation intended for stage 0 or 1 */
|
/* very low level pnp manipulation intended for stage 0 or 1 */
|
||||||
void rawpnp_enter_ext_func_mode(u16 dev);
|
void rawpnp_enter_ext_func_mode(u16 dev);
|
||||||
|
@ -74,4 +73,13 @@ struct resource *pnp_get_resource(struct device * dev, unsigned index);
|
||||||
void pnp_enable_devices(struct device *dev, struct device_operations *ops,
|
void pnp_enable_devices(struct device *dev, struct device_operations *ops,
|
||||||
unsigned functions, struct pnp_info *info);
|
unsigned functions, struct pnp_info *info);
|
||||||
|
|
||||||
|
#define PNP_IDX_IO0 0x60
|
||||||
|
#define PNP_IDX_IO1 0x62
|
||||||
|
#define PNP_IDX_IO2 0x64
|
||||||
|
#define PNP_IDX_IO3 0x66
|
||||||
|
#define PNP_IDX_IRQ0 0x70
|
||||||
|
#define PNP_IDX_IRQ1 0x72
|
||||||
|
#define PNP_IDX_DRQ0 0x74
|
||||||
|
#define PNP_IDX_DRQ1 0x75
|
||||||
|
|
||||||
#endif /* DEVICE_PNP_H */
|
#endif /* DEVICE_PNP_H */
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
/*
|
|
||||||
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.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef DEVICE_PNP_DEF_H
|
|
||||||
#define DEVICE_PNP_DEF_H
|
|
||||||
|
|
||||||
#define PNP_IDX_IO0 0x60
|
|
||||||
#define PNP_IDX_IO1 0x62
|
|
||||||
#define PNP_IDX_IO2 0x64
|
|
||||||
#define PNP_IDX_IO3 0x66
|
|
||||||
#define PNP_IDX_IRQ0 0x70
|
|
||||||
#define PNP_IDX_IRQ1 0x72
|
|
||||||
#define PNP_IDX_DRQ0 0x74
|
|
||||||
#define PNP_IDX_DRQ1 0x75
|
|
||||||
|
|
||||||
#endif /* DEVICE_PNP_DEF_H */
|
|
Loading…
Add table
Reference in a new issue