final rename orgy. sorry for the inconvenience. This should fix it again

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2363 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2006-08-04 07:50:59 +00:00
parent c76b85d6a7
commit a14b46895c
5 changed files with 9 additions and 9 deletions

View File

@ -9,7 +9,7 @@
#include "pc80/serial.c"
#include "arch/i386/lib/console.c"
#include "ram/ramtest.c"
#include "southbridge/intel/i8371eb/i8371eb_early_smbus.c"
#include "southbridge/intel/i82371eb/i82371eb_early_smbus.c"
#include "superio/NSC/pc87351/pc87351_early_serial.c"
#include "northbridge/intel/i440bx/raminit.h"
#include "cpu/x86/mtrr/earlymtrr.c"

View File

@ -1,13 +1,13 @@
#ifndef I8371EB_CHIP_H
#define I8371EB_CHIP_H
#ifndef I82371EB_CHIP_H
#define I82371EB_CHIP_H
struct southbridge_intel_i8371eb_config
struct southbridge_intel_i82371eb_config
{
unsigned int ide0_enable : 1;
unsigned int ide1_enable : 1;
};
struct chip_operations;
extern struct chip_operations southbridge_intel_i8371eb_ops;
extern struct chip_operations southbridge_intel_i82371eb_ops;
#endif /* I8371EB_CHIP_H */
#endif /* I82371EB_CHIP_H */

View File

@ -1,4 +1,4 @@
#include "i8371eb_smbus.h"
#include "i82371eb_smbus.h"
#define SMBUS_IO_BASE 0x0f00

View File

@ -10,7 +10,7 @@
#include <device/pci_ops.h>
#include <device/smbus.h>
#include <arch/io.h>
#include "i8371eb.h"
#include "i82371eb.h"
static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
@ -31,7 +31,7 @@ static struct device_operations smbus_ops = {
.enable_resources = pci_dev_enable_resources,
.init = 0,
.scan_bus = scan_static_bus,
.enable = i8371eb_enable,
.enable = i82371eb_enable,
.ops_pci = &lops_pci,
.ops_smbus_bus = &lops_smbus_bus,
};