From: Alessandro Parini Date: Sat, 13 Jun 2015 15:40:48 +0000 (+0200) Subject: staging: unisys: fix braces coding style X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4b4fd43a437626b45c0da21b373eedec38cc46fa;p=linux-beck.git staging: unisys: fix braces coding style fix coding style issue "braces {} are not necessary for single statement blocks" detected by checkpatch.pl in visorchipset.c Signed-off-by: Alessandro Parini Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c index cf35d9d3a9bc..ef7d67701499 100644 --- a/drivers/staging/unisys/visorbus/visorchipset.c +++ b/drivers/staging/unisys/visorbus/visorchipset.c @@ -2017,9 +2017,8 @@ cleanup: static void bus_create_response(struct visor_device *bus_info, int response) { - if (response >= 0) { + if (response >= 0) bus_info->state.created = 1; - } bus_responder(CONTROLVM_BUS_CREATE, bus_info->pending_msg_hdr, response);