From: Greg Kroah-Hartman Date: Fri, 1 May 2015 19:06:12 +0000 (+0200) Subject: greybus: protocol.h: fix up long lines in define_get_version() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e80d09af1e8a23c1d9c9da99540855cde21e00a1;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git greybus: protocol.h: fix up long lines in define_get_version() No need to go past 80 characters for the define_get_version macro, so fix up the indentation to not do so. Signed-off-by: Greg Kroah-Hartman Reviewed-by: Viresh Kumar --- diff --git a/drivers/staging/greybus/protocol.h b/drivers/staging/greybus/protocol.h index d16a582d571a..495d13aed365 100644 --- a/drivers/staging/greybus/protocol.h +++ b/drivers/staging/greybus/protocol.h @@ -110,10 +110,10 @@ static int get_version(struct __device *dev) \ struct gb_protocol_version_response response; \ int retval; \ \ - retval = gb_protocol_get_version(dev->connection, \ - GB_##__protocol##_TYPE_PROTOCOL_VERSION,\ - NULL, 0, &response, \ - GB_##__protocol##_VERSION_MAJOR); \ + retval = gb_protocol_get_version(dev->connection, \ + GB_##__protocol##_TYPE_PROTOCOL_VERSION,\ + NULL, 0, &response, \ + GB_##__protocol##_VERSION_MAJOR); \ if (retval) \ return retval; \ \