diff options
author | Hugh Sipière <hgsipiere@gmail.com> | 2017-12-29 20:55:42 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-01-02 17:33:21 +0100 |
commit | 8206948c91963c3f5698a3341337a1c6550df2ad (patch) | |
tree | e7ddc4d4e1d935b92d4c0132f5ab9e1319984d1e /drivers/uwb/drp-ie.c | |
parent | 3f514f97ee82bf1dcf860a0ad0aebd637159e107 (diff) | |
download | linux-8206948c91963c3f5698a3341337a1c6550df2ad.tar.bz2 |
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/drp-ie.c')
-rw-r--r-- | drivers/uwb/drp-ie.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/uwb/drp-ie.c b/drivers/uwb/drp-ie.c index b7d4f6b75eef..8681ee22bb77 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; } |