summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPantelis Koukousoulas2008-11-07 19:18:28 +0100
committerMichael Brown2008-11-08 13:54:18 +0100
commit180d99fc227f224c19e08f93d9f97b83b01cc329 (patch)
treed082f499fda4956fd1e1d7aad20f96612d4b8c68
parent[netdevice] Retain and report detailed error breakdowns (diff)
downloadipxe-180d99fc227f224c19e08f93d9f97b83b01cc329.tar.gz
ipxe-180d99fc227f224c19e08f93d9f97b83b01cc329.tar.xz
ipxe-180d99fc227f224c19e08f93d9f97b83b01cc329.zip
[isa] Fix a small typo in isa.c.
With this patch ISA drivers actually get probed so they have a fair chance of working now. Signed-off-by: Pantelis Koukousoulas <pktoss@gmail.com>
-rw-r--r--src/drivers/bus/isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/bus/isa.c b/src/drivers/bus/isa.c
index 4147a9bc..fa5def54 100644
--- a/src/drivers/bus/isa.c
+++ b/src/drivers/bus/isa.c
@@ -49,9 +49,9 @@ static isa_probe_addr_t isa_extra_probe_addrs[] = {
(driver)->probe_addrs[(ioidx)] )
static struct isa_driver isa_drivers[0]
- __table_start ( struct isa_driver, isa_driver );
+ __table_start ( struct isa_driver, isa_drivers );
static struct isa_driver isa_drivers_end[0]
- __table_end ( struct isa_driver, isa_driver );
+ __table_end ( struct isa_driver, isa_drivers );
static void isabus_remove ( struct root_device *rootdev );