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:
parent
c76b85d6a7
commit
a14b46895c
|
@ -9,7 +9,7 @@
|
||||||
#include "pc80/serial.c"
|
#include "pc80/serial.c"
|
||||||
#include "arch/i386/lib/console.c"
|
#include "arch/i386/lib/console.c"
|
||||||
#include "ram/ramtest.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 "superio/NSC/pc87351/pc87351_early_serial.c"
|
||||||
#include "northbridge/intel/i440bx/raminit.h"
|
#include "northbridge/intel/i440bx/raminit.h"
|
||||||
#include "cpu/x86/mtrr/earlymtrr.c"
|
#include "cpu/x86/mtrr/earlymtrr.c"
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
#ifndef I8371EB_CHIP_H
|
#ifndef I82371EB_CHIP_H
|
||||||
#define I8371EB_CHIP_H
|
#define I82371EB_CHIP_H
|
||||||
|
|
||||||
struct southbridge_intel_i8371eb_config
|
struct southbridge_intel_i82371eb_config
|
||||||
{
|
{
|
||||||
unsigned int ide0_enable : 1;
|
unsigned int ide0_enable : 1;
|
||||||
unsigned int ide1_enable : 1;
|
unsigned int ide1_enable : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct chip_operations;
|
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 */
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "i8371eb_smbus.h"
|
#include "i82371eb_smbus.h"
|
||||||
|
|
||||||
#define SMBUS_IO_BASE 0x0f00
|
#define SMBUS_IO_BASE 0x0f00
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <device/smbus.h>
|
#include <device/smbus.h>
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include "i8371eb.h"
|
#include "i82371eb.h"
|
||||||
|
|
||||||
|
|
||||||
static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
|
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,
|
.enable_resources = pci_dev_enable_resources,
|
||||||
.init = 0,
|
.init = 0,
|
||||||
.scan_bus = scan_static_bus,
|
.scan_bus = scan_static_bus,
|
||||||
.enable = i8371eb_enable,
|
.enable = i82371eb_enable,
|
||||||
.ops_pci = &lops_pci,
|
.ops_pci = &lops_pci,
|
||||||
.ops_smbus_bus = &lops_smbus_bus,
|
.ops_smbus_bus = &lops_smbus_bus,
|
||||||
};
|
};
|
Loading…
Reference in New Issue