datapath: Add version info for out-of-tree modules.
[openvswitch] / datapath / vport-generic.c
index 8fec185c92033ddbe7dbe7d9ee3fb3700bb26912..09b0b7cfa2a0275d7da7b2e0b099fbf85a1da980 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007-2011 Nicira Networks.
+ * Copyright (c) 2007-2011 Nicira, Inc.
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 2 of the GNU General Public
 
 #include "vport-generic.h"
 
-unsigned vport_gen_get_dev_flags(const struct vport *vport)
+unsigned ovs_vport_gen_get_dev_flags(const struct vport *vport)
 {
        return IFF_UP | IFF_RUNNING | IFF_LOWER_UP;
 }
 
-int vport_gen_is_running(const struct vport *vport)
+int ovs_vport_gen_is_running(const struct vport *vport)
 {
        return 1;
 }
 
-unsigned char vport_gen_get_operstate(const struct vport *vport)
+unsigned char ovs_vport_gen_get_operstate(const struct vport *vport)
 {
        return IF_OPER_UP;
 }