From: Bryan O'Donoghue Date: Thu, 29 Oct 2015 16:58:24 +0000 (+0000) Subject: greybus: manifest: fix the placement of arguments to pr_err X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~1083 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b350007219f65df8594e62c731e29ff3ad2f4d61;p=thirdparty%2Fkernel%2Flinux.git greybus: manifest: fix the placement of arguments to pr_err We're one character out here in the placement of the inputs to pr_err(). Later patches show this up when pushing through checkpatch.pl. This patch fixes by moving the offending variables one character left. Signed-off-by: Bryan O'Donoghue Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/manifest.c b/drivers/staging/greybus/manifest.c index 2264ec5914f92..3e61b6655a5f9 100644 --- a/drivers/staging/greybus/manifest.c +++ b/drivers/staging/greybus/manifest.c @@ -467,8 +467,8 @@ bool gb_manifest_parse(struct gb_interface *intf, void *data, size_t size) /* Validate major/minor number */ if (header->version_major > GREYBUS_VERSION_MAJOR) { pr_err("manifest version too new (%hhu.%hhu > %hhu.%hhu)\n", - header->version_major, header->version_minor, - GREYBUS_VERSION_MAJOR, GREYBUS_VERSION_MINOR); + header->version_major, header->version_minor, + GREYBUS_VERSION_MAJOR, GREYBUS_VERSION_MINOR); return false; }