From afa8313f928dadd74dba812bef6038ba0d144370 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 02:20:24 +0200 Subject: Remove parenthesis around arguments of return statements. Signed-off-by: Ralf Baechle --- ax25ipd/crc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ax25ipd/crc.c') diff --git a/ax25ipd/crc.c b/ax25ipd/crc.c index d132968..c6d8eea 100644 --- a/ax25ipd/crc.c +++ b/ax25ipd/crc.c @@ -77,7 +77,7 @@ u16 pppfcs(u16 fcs, unsigned char *cp, int len) while (len--) fcs = (fcs >> 8) ^ fcstab[(fcs ^ *cp++) & 0xff]; - return (fcs); + return fcs; } /* @@ -108,7 +108,7 @@ int ok_crc(unsigned char *buf, int l) fcs = PPPINITFCS; fcs = pppfcs(fcs, buf, l); - return (fcs == PPPGOODFCS); + return fcs == PPPGOODFCS; } /* -- cgit v1.2.3