efi: We don't need two memory_map() functions
authorMatt Fleming <matt.fleming@intel.com>
Tue, 11 Sep 2012 16:22:14 +0000 (17:22 +0100)
committerMatt Fleming <matt.fleming@intel.com>
Tue, 11 Sep 2012 17:20:34 +0000 (18:20 +0100)
commit9e657f72da9f5bfb66e534ce5ddeda4d5d9c936d
treec765d103243f8e86ff314d8c001ad61bc35bb7b8
parent97402a0a16399ab0c396583cf1c7d16c05ac6753
efi: We don't need two memory_map() functions

There are two functions for getting the EFI memory map, each with a
different sets of semantics. get_memory_map() returns the number of
entries in the map in it's first parameter, whereas memory_map()
returns the size of the memory map. The implementation of memory_map()
is bogus as it mixes up the semantics by calling get_memory_map().

The two functions do pretty much the same thing anyway so delete the
buggy one.

Signed-off-by: Matt Fleming <matt.fleming@intel.com>
efi/main.c