From: Colin Ian King Date: Tue, 11 Sep 2018 16:58:58 +0000 (+0100) Subject: firmware: vpd: fix spelling mistake "partion" -> "partition" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7153d9afdbd52805f99c28f51e81ee65f5dabbf8;p=linux.git firmware: vpd: fix spelling mistake "partion" -> "partition" Trivial fix to spelling mistake in comment Signed-off-by: Colin Ian King Reviewed-by: Guenter Roeck Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/firmware/google/vpd.c b/drivers/firmware/google/vpd.c index 1aa67bb5d8c0b..c0c0b4e4e281c 100644 --- a/drivers/firmware/google/vpd.c +++ b/drivers/firmware/google/vpd.c @@ -198,7 +198,7 @@ static int vpd_section_init(const char *name, struct vpd_section *sec, sec->name = name; - /* We want to export the raw partion with name ${name}_raw */ + /* We want to export the raw partition with name ${name}_raw */ sec->raw_name = kasprintf(GFP_KERNEL, "%s_raw", name); if (!sec->raw_name) { err = -ENOMEM;