Commit b5c5ae00 authored by Kai Germaschewski's avatar Kai Germaschewski

ISDN: Named initializers for isdn_bsdcomp.c

parent 1bd35408
...@@ -907,16 +907,15 @@ static int bsd_decompress (void *state, struct sk_buff *skb_in, struct sk_buff * ...@@ -907,16 +907,15 @@ static int bsd_decompress (void *state, struct sk_buff *skb_in, struct sk_buff *
*************************************************************/ *************************************************************/
static struct isdn_ppp_compressor ippp_bsd_compress = { static struct isdn_ppp_compressor ippp_bsd_compress = {
NULL,NULL, /* prev,next: overwritten by isdn_ppp */ .num = CI_BSD_COMPRESS,
CI_BSD_COMPRESS, /* compress_proto */ .alloc = bsd_alloc,
bsd_alloc, /* alloc */ .free = bsd_free,
bsd_free, /* free */ .init = bsd_init,
bsd_init, /* init */ .reset = bsd_reset,
bsd_reset, /* reset */ .compress = bsd_compress,
bsd_compress, /* compress */ .decompress = bsd_decompress,
bsd_decompress, /* decompress */ .incomp = bsd_incomp,
bsd_incomp, /* incomp */ .stat = bsd_stats,
bsd_stats /* comp_stat */
}; };
/************************************************************* /*************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment