Commit 3e56edd0 authored by Art Haas's avatar Art Haas Committed by Linus Torvalds

[PATCH] named initializers for net/atm/lec.c

parent e381abd2
...@@ -553,8 +553,8 @@ lec_atm_close(struct atm_vcc *vcc) ...@@ -553,8 +553,8 @@ lec_atm_close(struct atm_vcc *vcc)
} }
static struct atmdev_ops lecdev_ops = { static struct atmdev_ops lecdev_ops = {
close: lec_atm_close, .close = lec_atm_close,
send: lec_atm_send .send = lec_atm_send
}; };
static struct atm_dev lecatm_dev = { static struct atm_dev lecatm_dev = {
......
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