device: Fix spelling

Change-Id: I53a40d114aa2da76398c5b97443d4096809dcf36
Signed-off-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-on: http://review.coreboot.org/3730
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Martin Roth
2013-07-08 16:24:19 -06:00
committed by Stefan Reinauer
parent 50d887d4f4
commit 63373edce0
23 changed files with 83 additions and 83 deletions

View File

@@ -285,7 +285,7 @@ int path_eq(struct device_path *path1, struct device_path *path2)
equal = (path1->cpu_bus.id == path2->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;
}
@@ -544,7 +544,7 @@ const char *resource_type(struct resource *resource)
/**
* Print the resource that was just stored.
*
* @param dev The device the stored resorce lives on.
* @param dev The device the stored resource lives on.
* @param resource The resource that was just stored.
* @param comment TODO
*/