From: Sergio Paracuellos Date: Fri, 6 Apr 2018 12:37:47 +0000 (+0200) Subject: staging: ks7010: remove '\' character from michael_block function X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f2052072fbe42111c0d38e40e3f3710242346302;p=openwrt%2Fstaging%2Fblogic.git staging: ks7010: remove '\' character from michael_block function This commit removes '\' character from michael_block function. It seems these two were not removed properly in the following commit: - staging: ks7010: replace MichaelBlockFunction macro with inline function (c61cc2cc3be358da10121d119356dfe67fe240f2). Signed-off-by: Sergio Paracuellos Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ks7010/michael_mic.c b/drivers/staging/ks7010/michael_mic.c index 51862bcf5f58..0800e13b2156 100644 --- a/drivers/staging/ks7010/michael_mic.c +++ b/drivers/staging/ks7010/michael_mic.c @@ -41,9 +41,9 @@ static inline void michael_block(struct michael_mic *mic) mic->r ^= ((mic->l & 0xff00ff00) >> 8) | ((mic->l & 0x00ff00ff) << 8); mic->l += mic->r; - mic->r ^= rol32(mic->l, 3); \ + mic->r ^= rol32(mic->l, 3); mic->l += mic->r; - mic->r ^= ror32(mic->l, 2); \ + mic->r ^= ror32(mic->l, 2); mic->l += mic->r; }