summaryrefslogtreecommitdiffstats
path: root/drivers/uwb
diff options
context:
space:
mode:
authorHugh Sipière <hgsipiere@gmail.com>2017-12-29 20:55:42 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-02 17:33:21 +0100
commit8206948c91963c3f5698a3341337a1c6550df2ad (patch)
treee7ddc4d4e1d935b92d4c0132f5ab9e1319984d1e /drivers/uwb
parent3f514f97ee82bf1dcf860a0ad0aebd637159e107 (diff)
downloadop-kernel-dev-8206948c91963c3f5698a3341337a1c6550df2ad.zip
op-kernel-dev-8206948c91963c3f5698a3341337a1c6550df2ad.tar.gz
uwb: fix brace coding style issue in drp-ie.c
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>
Diffstat (limited to 'drivers/uwb')
-rw-r--r--drivers/uwb/drp-ie.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/uwb/drp-ie.c b/drivers/uwb/drp-ie.c
index b7d4f6b7..8681ee2 100644
--- a/drivers/uwb/drp-ie.c
+++ b/drivers/uwb/drp-ie.c
@@ -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;
}
OpenPOWER on IntegriCloud