From patchwork Mon Sep 10 08:43:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Fainelli X-Patchwork-Id: 182825 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 046A52C0087 for ; Mon, 10 Sep 2012 18:53:56 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755664Ab2IJIxy (ORCPT ); Mon, 10 Sep 2012 04:53:54 -0400 Received: from zmc.proxad.net ([212.27.53.206]:36695 "EHLO zmc.proxad.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753176Ab2IJIxv (ORCPT ); Mon, 10 Sep 2012 04:53:51 -0400 X-Greylist: delayed 588 seconds by postgrey-1.27 at vger.kernel.org; Mon, 10 Sep 2012 04:53:51 EDT Received: from localhost (localhost [127.0.0.1]) by zmc.proxad.net (Postfix) with ESMTP id CD6DAA44EFA; Mon, 10 Sep 2012 10:44:02 +0200 (CEST) X-Virus-Scanned: amavisd-new at localhost Received: from zmc.proxad.net ([127.0.0.1]) by localhost (zmc.proxad.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DZkFbLGoXe71; Mon, 10 Sep 2012 10:44:02 +0200 (CEST) Received: from flexo.iliad.local (freebox.vlq16.iliad.fr [213.36.7.13]) by zmc.proxad.net (Postfix) with ESMTPSA id 6401CA44B44; Mon, 10 Sep 2012 10:44:02 +0200 (CEST) From: Florian Fainelli To: netdev@vger.kernel.org Cc: khc@pm.waw.pl, joe@perches.com, David Miller , Florian Fainelli , stable@vger.kernel.org Subject: [PATCH net] ixp4xx_hss: fix build failure after logging conversion Date: Mon, 10 Sep 2012 10:43:10 +0200 Message-Id: <1347266590-884-1-git-send-email-florian@openwrt.org> X-Mailer: git-send-email 1.7.9.5 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Commit c75bb2c6f0cf455c23e60f14d780e841dd47f801 (ixp4xx_hss: Update to current logging forms) converted the ixp4xx_hss module to use the current logging macros, but forgot to include linux/module.h, leading to the following build failures: CC [M] drivers/net/wan/ixp4xx_hss.o drivers/net/wan/ixp4xx_hss.c:1412:20: error: expected ';', ',' or ')' before string constant drivers/net/wan/ixp4xx_hss.c:1413:25: error: expected ';', ',' or ')' before string constant drivers/net/wan/ixp4xx_hss.c:1414:21: error: expected ';', ',' or ')' before string constant drivers/net/wan/ixp4xx_hss.c:1415:19: error: expected ';', ',' or ')' before string constant make[8]: *** [drivers/net/wan/ixp4xx_hss.o] Error 1 CC: stable@vger.kernel.org Signed-off-by: Florian Fainelli --- [stable: 3.1+] drivers/net/wan/ixp4xx_hss.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wan/ixp4xx_hss.c b/drivers/net/wan/ixp4xx_hss.c index aaaca9a..3f575af 100644 --- a/drivers/net/wan/ixp4xx_hss.c +++ b/drivers/net/wan/ixp4xx_hss.c @@ -10,6 +10,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#include #include #include #include