staging: gdm724x: fix line limit coding style issue in gdm_lte.c
authorNing Zhou <zhou.ning.gd@gmail.com>
Sun, 4 Jan 2015 09:06:17 +0000 (10:06 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Jan 2015 22:57:43 +0000 (14:57 -0800)
This is a patch to fix "WARNING: line over 80 characters" found by
checkpatch.pl in gdm_lte.c.

Signed-off-by: Ning Zhou <zhou.ning.gd@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gdm724x/gdm_lte.c

index 73eede163820f4805733e27d10b16883be4528db..7c4a77bb94aa991913e35f1f49f54aa425a60af8 100644 (file)
@@ -281,7 +281,8 @@ static int gdm_lte_emulate_ndp(struct sk_buff *skb_in, u32 nic_type)
                icmp6_out.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
                icmp6_out.icmp6_code = 0;
                icmp6_out.icmp6_cksum = 0;
-               icmp6_out.icmp6_dataun.un_data32[0] = htonl(0x60000000); /* R=0, S=1, O=1 */
+               /* R=0, S=1, O=1 */
+               icmp6_out.icmp6_dataun.un_data32[0] = htonl(0x60000000);
 
                ns = (struct neighbour_solicitation *)
                        (skb_in->data + mac_header_len +
This page took 0.026641 seconds and 5 git commands to generate.