Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1681756 > unrolled thread
| Started by | Joe Perches <joe@perches.com> |
|---|---|
| First post | 2017-07-05 22:10 +0200 |
| Last post | 2017-07-05 22:10 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 14/18] USB: serial: safe_serial: Move __inline__ before return type Joe Perches <joe@perches.com> - 2017-07-05 22:10 +0200
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-07-05 22:10 +0200 |
| Subject | [PATCH 14/18] USB: serial: safe_serial: Move __inline__ before return type |
| Message-ID | <tZYMy-2CG-21@gated-at.bofh.it> |
Make the code like the rest of the kernel.
Also use inline instead of __inline__.
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/usb/serial/safe_serial.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/serial/safe_serial.c b/drivers/usb/serial/safe_serial.c
index 8a069aa154ed..27d7a7016298 100644
--- a/drivers/usb/serial/safe_serial.c
+++ b/drivers/usb/serial/safe_serial.c
@@ -180,7 +180,7 @@ static const __u16 crc10_table[256] = {
* Perform a memcpy and calculate fcs using ppp 10bit CRC algorithm. Return
* new 10 bit FCS.
*/
-static __u16 __inline__ fcs_compute10(unsigned char *sp, int len, __u16 fcs)
+static inline __u16 fcs_compute10(unsigned char *sp, int len, __u16 fcs)
{
for (; len-- > 0; fcs = CRC10_FCS(fcs, *sp++));
return fcs;
--
2.10.0.rc2.1.g053435c
Back to top | Article view | linux.kernel
csiph-web