From 1d55d085c975688e9146d54e02fcb1496b002e31 Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Sun, 27 Mar 2022 11:04:26 +0200 Subject: [PATCH] cangen: checkpatch: fix comment style Signed-off-by: Marc Kleine-Budde --- cangen.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/cangen.c b/cangen.c index 3123f20..87d095a 100644 --- a/cangen.c +++ b/cangen.c @@ -329,10 +329,12 @@ int main(int argc, char **argv) } addr.can_ifindex = ifr.ifr_ifindex; - /* disable default receive filter on this RAW socket */ - /* This is obsolete as we do not read from the socket at all, but for */ - /* this reason we can remove the receive list in the Kernel to save a */ - /* little (really a very little!) CPU usage. */ + /* + * disable default receive filter on this RAW socket + * This is obsolete as we do not read from the socket at all, but for + * this reason we can remove the receive list in the Kernel to save a + * little (really a very little!) CPU usage. + */ setsockopt(s, SOL_CAN_RAW, CAN_RAW_FILTER, NULL, 0); if (loopback_disable) {