mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-04 23:35:18 +02:00
Trivial (cosmetic) cleanup
* Only open /dev/mem once and do it early. * Drop extern for function prototypes. * Minimize ts5300 impact in probe_flash() This cleanup will making ICH7 SPI support quite some easier. Corresponding to flashrom svn r100 and coreboot v2 svn r2585. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de>
This commit is contained in:

committed by
Stefan Reinauer

parent
8e3a600123
commit
7038564346
10
lbtable.c
10
lbtable.c
@ -158,14 +158,8 @@ int linuxbios_init(void)
|
||||
struct lb_header *lb_table;
|
||||
struct lb_record *rec, *last;
|
||||
|
||||
int fd;
|
||||
fd = open(MEM_DEV, O_RDONLY);
|
||||
if (fd < 0) {
|
||||
fprintf(stderr, "Can not access memory using " MEM_DEV "\n");
|
||||
exit(-1);
|
||||
}
|
||||
low_1MB = mmap(0, 1024*1024, PROT_READ, MAP_SHARED, fd, 0x00000000);
|
||||
if (low_1MB == ((void *) -1)) {
|
||||
low_1MB = mmap(0, 1024*1024, PROT_READ, MAP_SHARED, fd_mem, 0x00000000);
|
||||
if (low_1MB == MAP_FAILED) {
|
||||
fprintf(stderr, "Can not mmap " MEM_DEV " at %08lx errno(%d):%s\n",
|
||||
0x00000000UL, errno, strerror(errno));
|
||||
exit(-2);
|
||||
|
Reference in New Issue
Block a user