Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d2b7c4a authored by Anson Jacob's avatar Anson Jacob Committed by Greg Kroah-Hartman
Browse files

staging: i4l: act2000: capi: Fix checkpatch warning



Fix checkpath.pl warning:
trailing statements should be on next line
open brace '{' following function declarations go on the next line

Signed-off-by: default avatarAnson Jacob <ansonjacob.aj@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8a0b09d9
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -113,7 +113,9 @@ actcapi_chkhdr(act2000_card *card, actcapi_msghdr *hdr)
			m->hdr.cmd.cmd = c;			\
			m->hdr.cmd.subcmd = s;			\
			m->hdr.msgnum = actcapi_nextsmsg(card); \
		} else m = NULL;				\
		} else {					\
			m = NULL;				\
		}						\
	}

#define ACTCAPI_CHKSKB if (!skb) {					\
@@ -989,7 +991,8 @@ actcapi_debug_dlpd(actcapi_dlpd *dlpd)
}

#ifdef DEBUG_DUMP_SKB
static void dump_skb(struct sk_buff *skb) {
static void dump_skb(struct sk_buff *skb)
{
	char tmp[80];
	char *p = skb->data;
	char *t = tmp;