* fix typos in device_util.c

* drop double error in malloc.c
* add extra CFLAGS to reduce code size by 10%
* add more build time defines and use them in the LB table.

The LB_TAG_COMPILE_TIME is a partly duplicate of LB_TAG_BUILD,
as LB_TAG_BUILD contains both date and time. I left this in for
compatibility reasons.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@268 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-03-22 00:36:11 +00:00
commit 8a8f3f4836
4 changed files with 22 additions and 21 deletions

View file

@ -297,7 +297,7 @@ int path_eq(struct device_path *path1, struct device_path *path2)
equal = (path1->u.cpu_bus.id == path2->u.cpu_bus.id);
break;
default:
printk(BIOS_ERR, "Uknown device type: %d\n", path1->type);
printk(BIOS_ERR, "Unknown device type: %d\n", path1->type);
break;
}
}
@ -339,7 +339,7 @@ int id_eq(struct device_id *path1, struct device_id *path2)
equal = (path1->u.cpu_bus.vendor == path2->u.cpu_bus.vendor) && (path1->u.cpu_bus.device == path2->u.cpu_bus.device);
break;
default:
printk(BIOS_ERR, "Uknown device type: %d\n", path1->type);
printk(BIOS_ERR, "Unknown device type: %d\n", path1->type);
break;
}
}