From: Jesse Gross Date: Fri, 30 Jul 2010 01:15:14 +0000 (-0700) Subject: datapath: Catch missed formatting changes. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbb29a542d917040bd4d23900e8ef9bf5b1f6ea1;p=openvswitch datapath: Catch missed formatting changes. A few functions were missed in the change to move the return type onto the same line as the arguments. --- diff --git a/datapath/vport-netdev.c b/datapath/vport-netdev.c index 51724955..f172ac4e 100644 --- a/datapath/vport-netdev.c +++ b/datapath/vport-netdev.c @@ -59,8 +59,7 @@ static int netdev_init(void) return 0; } -static void -netdev_exit(void) +static void netdev_exit(void) { br_handle_frame_hook = NULL; } @@ -224,8 +223,7 @@ unsigned char netdev_get_operstate(const struct vport *vport) return netdev_vport->dev->operstate; } -int -netdev_get_ifindex(const struct vport *vport) +int netdev_get_ifindex(const struct vport *vport) { const struct netdev_vport *netdev_vport = netdev_vport_priv(vport); return netdev_vport->dev->ifindex;