summaryrefslogtreecommitdiff
path: root/physmap.c
diff options
context:
space:
mode:
authorhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2011-08-15 19:54:20 +0000
committerhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2011-08-15 19:54:20 +0000
commit6fd69f0c25c1fdd855af93c073e886d56c01a31b (patch)
treece63847ee6cc1e63289e3f658a5d57ebd35b3619 /physmap.c
parent5e88d071c691206c3da74b4e9ebf1559069fc4cf (diff)
downloadflashrom-6fd69f0c25c1fdd855af93c073e886d56c01a31b.tar.gz
Fixup of r1397:
- Mixing uninitialized and initialized local variables leads to confusion. - ft2232_spi error cases should have gotten some error handling, and that's the reason the curly braces were there. - Fixing typos/wording in some places would have been nice given that those places were touched anyway. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stefan Tauner <stefan.tauner@student.tuwien.ac.at> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1413 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'physmap.c')
-rw-r--r--physmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/physmap.c b/physmap.c
index cbab636..d92015d 100644
--- a/physmap.c
+++ b/physmap.c
@@ -76,7 +76,7 @@ static void *sys_physmap(unsigned long phys_addr, size_t len)
mi.address = phys_addr;
mi.size = len;
- ret = __dpmi_physical_address_mapping (&mi);
+ ret = __dpmi_physical_address_mapping(&mi);
if (ret != 0)
return ERROR_PTR;