From patchwork Tue Dec 20 14:33:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Cyrill Gorcunov X-Patchwork-Id: 132436 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 498FDB7030 for ; Wed, 21 Dec 2011 01:33:16 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752162Ab1LTOdK (ORCPT ); Tue, 20 Dec 2011 09:33:10 -0500 Received: from mail-ee0-f46.google.com ([74.125.83.46]:53483 "EHLO mail-ee0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751900Ab1LTOdI (ORCPT ); Tue, 20 Dec 2011 09:33:08 -0500 Received: by eekc4 with SMTP id c4so6571820eek.19 for ; Tue, 20 Dec 2011 06:33:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:content-transfer-encoding:user-agent; bh=z3ghU9o2NqnJxV8sfuzp1Z8uHgL7B8dR2omKd7WQ+1o=; b=w4M0R+0o4RHGN52McKfMM7DuPJIPeF/ANgTofxoNs0WvFEykmYH8cq4p5OhosIXPWR AkboTwN/x4oA9jlEwI78l/+lhmJylvkieJ2T5K5sHjQaXx5+sz0f0SHKIO5DzQOh7QZy WV4LdkEUuO6CZtSDd5XXgaTD51NUc2N1DfV+0= Received: by 10.14.47.141 with SMTP id t13mr1027018eeb.89.1324391586949; Tue, 20 Dec 2011 06:33:06 -0800 (PST) Received: from moon.localdomain ([188.134.33.130]) by mx.google.com with ESMTPS id z54sm7468395eeh.5.2011.12.20.06.33.05 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 20 Dec 2011 06:33:05 -0800 (PST) Received: by moon.localdomain (Postfix, from userid 1000) id 9E1EEA0E0F; Tue, 20 Dec 2011 18:33:03 +0400 (MSK) Date: Tue, 20 Dec 2011 18:33:03 +0400 From: Cyrill Gorcunov To: NETDEV Cc: David Miller , Pavel Emelyanov Subject: [PATCH net-next] net: unix -- Add missing module.h inclusion Message-ID: <20111220143303.GA12782@moon> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Otherwise getting | net/unix/diag.c:312:16: error: expected declaration specifiers or ‘...’ before string constant | net/unix/diag.c:313:1: error: expected declaration specifiers or ‘...’ before string constant Signed-off-by: Cyrill Gorcunov --- net/unix/diag.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/unix/diag.c b/net/unix/diag.c index a5c4aab..91d5782 100644 --- a/net/unix/diag.c +++ b/net/unix/diag.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include