summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/esb6300/esb6300_ide.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-04-07 02:06:53 +0000
committerStefan Reinauer <stepan@openbios.org>2010-04-07 02:06:53 +0000
commitc2d29415c3b3c40149087fe6a379e60c030c9d58 (patch)
tree0c76c9e79ea859430a919b2effa9dcafdc8a1843 /src/southbridge/intel/esb6300/esb6300_ide.c
parentc51dc44bf2b76ac47b83ee76bee3357ce4b173de (diff)
downloadcoreboot-c2d29415c3b3c40149087fe6a379e60c030c9d58.tar.xz
switch some ROMCC boards back to ROMCC.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5364 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/esb6300/esb6300_ide.c')
-rw-r--r--src/southbridge/intel/esb6300/esb6300_ide.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/esb6300/esb6300_ide.c b/src/southbridge/intel/esb6300/esb6300_ide.c
index e56393722a..543468dabb 100644
--- a/src/southbridge/intel/esb6300/esb6300_ide.c
+++ b/src/southbridge/intel/esb6300/esb6300_ide.c
@@ -9,7 +9,6 @@ static void ide_init(struct device *dev)
{
/* Enable ide devices so the linux ide driver will work */
- uint16_t word;
/* Enable IDE devices */
pci_write_config16(dev, 0x40, 0x0a307);
@@ -19,6 +18,7 @@ static void ide_init(struct device *dev)
pci_write_config16(dev, 0x54, 0x5055);
#if 0
+ uint16_t word;
word = pci_read_config16(dev, 0x40);
word |= (1 << 15);
pci_write_config16(dev, 0x40, word);