summaryrefslogtreecommitdiff
path: root/drivers/staging/ccree
diff options
context:
space:
mode:
authorTyler Olivieri <sleepingzucchini@gmail.com>2017-07-09 17:10:43 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-07-16 08:40:57 +0200
commit113f0d6a71eb6744fd45818b08dd29d306e117b6 (patch)
tree8f730d75332217c4b7d03ec14dab9ffcb1bc85da /drivers/staging/ccree
parent4a73bb48ded88adfc7180cb5a00a0b89dd41c7fb (diff)
staging: ccree: remove redudant semicolons
Patch to remove checkpatch warning: WARNING: Statements terminations use 1 semicolon Signed-off-by: Tyler Olivieri <sleepingzucchini@gmail.com> Acked-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ccree')
-rw-r--r--drivers/staging/ccree/ssi_buffer_mgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ccree/ssi_buffer_mgr.c b/drivers/staging/ccree/ssi_buffer_mgr.c
index 9caff9b096db..c9c0e77becb3 100644
--- a/drivers/staging/ccree/ssi_buffer_mgr.c
+++ b/drivers/staging/ccree/ssi_buffer_mgr.c
@@ -150,7 +150,7 @@ static inline int ssi_buffer_mgr_render_buff_to_mlli(
u32 **mlli_entry_pp)
{
u32 *mlli_entry_p = *mlli_entry_pp;
- u32 new_nents;;
+ u32 new_nents;
/* Verify there is no memory overflow*/
new_nents = (*curr_nents + buff_size / CC_MAX_MLLI_ENTRY_SIZE + 1);