arcnet.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | arcnet.c (5b5e0928f742cfa853b2411400a1b19fa379d758) |
---|---|
1/* 2 * Linux ARCnet driver - device-independent routines 3 * 4 * Written 1997 by David Woodhouse. 5 * Written 1994-1999 by Avery Pennarun. 6 * Written 1999-2000 by Martin Mares <mj@ucw.cz>. 7 * Derived from skeleton.c by Donald Becker. 8 * --- 109 unchanged lines hidden (view full) --- 118 pr_info("arcnet loaded\n"); 119 120 /* initialize the protocol map */ 121 arc_raw_proto = arc_proto_default = arc_bcast_proto = &arc_proto_null; 122 for (count = 0; count < 256; count++) 123 arc_proto_map[count] = arc_proto_default; 124 125 if (BUGLVL(D_DURING)) | 1/* 2 * Linux ARCnet driver - device-independent routines 3 * 4 * Written 1997 by David Woodhouse. 5 * Written 1994-1999 by Avery Pennarun. 6 * Written 1999-2000 by Martin Mares <mj@ucw.cz>. 7 * Derived from skeleton.c by Donald Becker. 8 * --- 109 unchanged lines hidden (view full) --- 118 pr_info("arcnet loaded\n"); 119 120 /* initialize the protocol map */ 121 arc_raw_proto = arc_proto_default = arc_bcast_proto = &arc_proto_null; 122 for (count = 0; count < 256; count++) 123 arc_proto_map[count] = arc_proto_default; 124 125 if (BUGLVL(D_DURING)) |
126 pr_info("struct sizes: %Zd %Zd %Zd %Zd %Zd\n", | 126 pr_info("struct sizes: %zd %zd %zd %zd %zd\n", |
127 sizeof(struct arc_hardware), 128 sizeof(struct arc_rfc1201), 129 sizeof(struct arc_rfc1051), 130 sizeof(struct arc_eth_encap), 131 sizeof(struct archdr)); 132 133 return 0; 134} --- 971 unchanged lines hidden --- | 127 sizeof(struct arc_hardware), 128 sizeof(struct arc_rfc1201), 129 sizeof(struct arc_rfc1051), 130 sizeof(struct arc_eth_encap), 131 sizeof(struct archdr)); 132 133 return 0; 134} --- 971 unchanged lines hidden --- |