From patchwork Wed Aug 28 11:34:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lutz Jaenicke X-Patchwork-Id: 270467 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 88B502C00AC for ; Wed, 28 Aug 2013 21:34:53 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754819Ab3H1Let (ORCPT ); Wed, 28 Aug 2013 07:34:49 -0400 Received: from home.innominate.com ([77.245.32.75]:35728 "EHLO home.innominate.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753472Ab3H1Les (ORCPT ); Wed, 28 Aug 2013 07:34:48 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by home.innominate.com (Postfix) with ESMTP id A658D2133; Wed, 28 Aug 2013 13:34:47 +0200 (CEST) Received: from home.innominate.com ([127.0.0.1]) by localhost (innominate.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id L2bMZlkhsfl7; Wed, 28 Aug 2013 13:34:47 +0200 (CEST) Received: from lutz.bln.innominate.local (lutz.bln.innominate.local [10.1.0.160]) by home.innominate.com (Postfix) with ESMTP id 8DEFF212F; Wed, 28 Aug 2013 13:34:47 +0200 (CEST) Received: by lutz.bln.innominate.local (Postfix, from userid 1000) id 6FD082A24A; Wed, 28 Aug 2013 13:34:47 +0200 (CEST) From: Lutz Jaenicke To: netdev@vger.kernel.org Cc: Lutz Jaenicke Subject: [PATCH] macvlan: fix typo in assignment Date: Wed, 28 Aug 2013 13:34:31 +0200 Message-Id: <1377689671-28666-1-git-send-email-ljaenicke@innominate.com> X-Mailer: git-send-email 1.7.10.4 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org commit 3b04ddde02cf1b6f14f2697da5c20eca5715017f "[NET]: Move hardware header operations out of netdevice." moved the handling into macvlan setup adding dev->header_ops = &macvlan_hard_header_ops, At the end of the line the ',' should have been a ';' Signed-off-by: Lutz Jaenicke --- drivers/net/macvlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 16b43bf..4e2698d 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -683,7 +683,7 @@ void macvlan_common_setup(struct net_device *dev) dev->priv_flags |= IFF_UNICAST_FLT; dev->netdev_ops = &macvlan_netdev_ops; dev->destructor = free_netdev; - dev->header_ops = &macvlan_hard_header_ops, + dev->header_ops = &macvlan_hard_header_ops; dev->ethtool_ops = &macvlan_ethtool_ops; } EXPORT_SYMBOL_GPL(macvlan_common_setup);