diff options
Diffstat (limited to 'net/atm/lec.c')
-rw-r--r-- | net/atm/lec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/atm/lec.c b/net/atm/lec.c index 779b3fa6052d..019557d0a11d 100644 --- a/net/atm/lec.c +++ b/net/atm/lec.c | |||
@@ -111,9 +111,9 @@ static inline void lec_arp_put(struct lec_arp_table *entry) | |||
111 | } | 111 | } |
112 | 112 | ||
113 | static struct lane2_ops lane2_ops = { | 113 | static struct lane2_ops lane2_ops = { |
114 | lane2_resolve, /* resolve, spec 3.1.3 */ | 114 | .resolve = lane2_resolve, /* spec 3.1.3 */ |
115 | lane2_associate_req, /* associate_req, spec 3.1.4 */ | 115 | .associate_req = lane2_associate_req, /* spec 3.1.4 */ |
116 | NULL /* associate indicator, spec 3.1.5 */ | 116 | .associate_indicator = NULL /* spec 3.1.5 */ |
117 | }; | 117 | }; |
118 | 118 | ||
119 | static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; | 119 | static unsigned char bus_mac[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |