uwb: fix brace coding style issue in drp-ie.c
authorHugh Sipière <hgsipiere@gmail.com>
Fri, 29 Dec 2017 20:55:42 +0000 (20:55 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Jan 2018 16:33:21 +0000 (17:33 +0100)
The coding style doesn't use braces if a single statment will do. In
this case we can get rid of the braces.

Signed-off-by: Hugh Sipière <hgsipiere@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/uwb/drp-ie.c

index b7d4f6b..8681ee2 100644 (file)
@@ -128,9 +128,8 @@ static struct uwb_ie_drp *uwb_drp_ie_alloc(void)
        drp_ie = kzalloc(sizeof(struct uwb_ie_drp) +
                        UWB_NUM_ZONES * sizeof(struct uwb_drp_alloc),
                        GFP_KERNEL);
-       if (drp_ie) {
+       if (drp_ie)
                drp_ie->hdr.element_id = UWB_IE_DRP;
-       }
        return drp_ie;
 }