From d35fbe15aad2b8b74683ebb9bbb3c9ad3c04bb04 Mon Sep 17 00:00:00 2001 From: Mark Cave-Ayland Date: Sat, 31 Jul 2010 22:48:10 +0000 Subject: [PATCH] Fix the SCSI block driver so that it doesn't leave an extra item on the stack when its open method is called. Signed-off-by: Mark Cave-Ayland git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@825 f158a5a8-5612-0410-a976-696ce0be7e32 --- drivers/esp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/esp.c b/drivers/esp.c index ae0ede5..8196ffb 100644 --- a/drivers/esp.c +++ b/drivers/esp.c @@ -268,7 +268,7 @@ ob_sd_open(__attribute__((unused))sd_private_t **sd) fword("my-unit"); id = POP(); - //POP(); // unit id is 2 ints but we only need one. + POP(); // unit id is 2 ints but we only need one. *sd = &global_esp->sd[id]; #ifdef CONFIG_DEBUG_ESP