diff options
Diffstat (limited to 'arch/um/drivers/vde_kern.c')
-rw-r--r-- | arch/um/drivers/vde_kern.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/um/drivers/vde_kern.c b/arch/um/drivers/vde_kern.c index eb8cf31b820d..c5d01685d2b5 100644 --- a/arch/um/drivers/vde_kern.c +++ b/arch/um/drivers/vde_kern.c | |||
@@ -7,10 +7,8 @@ | |||
7 | * | 7 | * |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include "linux/kernel.h" | ||
11 | #include "linux/init.h" | 10 | #include "linux/init.h" |
12 | #include "linux/netdevice.h" | 11 | #include <linux/netdevice.h> |
13 | #include "linux/etherdevice.h" | ||
14 | #include "net_kern.h" | 12 | #include "net_kern.h" |
15 | #include "net_user.h" | 13 | #include "net_user.h" |
16 | #include "vde.h" | 14 | #include "vde.h" |
@@ -30,12 +28,12 @@ static void vde_init(struct net_device *dev, void *data) | |||
30 | vpri->conn = NULL; | 28 | vpri->conn = NULL; |
31 | vpri->dev = dev; | 29 | vpri->dev = dev; |
32 | 30 | ||
33 | printk(KERN_INFO "vde backend - %s, ", vpri->vde_switch ? | 31 | printk("vde backend - %s, ", vpri->vde_switch ? |
34 | vpri->vde_switch : "(default socket)"); | 32 | vpri->vde_switch : "(default socket)"); |
35 | 33 | ||
36 | vde_init_libstuff(vpri, init); | 34 | vde_init_libstuff(vpri, init); |
37 | 35 | ||
38 | printk(KERN_INFO "\n"); | 36 | printk("\n"); |
39 | } | 37 | } |
40 | 38 | ||
41 | static int vde_read(int fd, struct sk_buff **skb, struct uml_net_private *lp) | 39 | static int vde_read(int fd, struct sk_buff **skb, struct uml_net_private *lp) |