From fbb29a542d917040bd4d23900e8ef9bf5b1f6ea1 Mon Sep 17 00:00:00 2001 From: Jesse Gross Date: Thu, 29 Jul 2010 18:15:14 -0700 Subject: [PATCH] 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. --- datapath/vport-netdev.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/datapath/vport-netdev.c b/datapath/vport-netdev.c index 517249556..f172ac4ed 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; -- 2.43.0