From patchwork Fri Aug 23 08:58:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eugene Krasnikov X-Patchwork-Id: 2848634 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id AF216BF546 for ; Fri, 23 Aug 2013 08:59:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D48FD202F6 for ; Fri, 23 Aug 2013 08:59:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0CDA8202F0 for ; Fri, 23 Aug 2013 08:59:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755328Ab3HWI7t (ORCPT ); Fri, 23 Aug 2013 04:59:49 -0400 Received: from mail-la0-f47.google.com ([209.85.215.47]:47061 "EHLO mail-la0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753947Ab3HWI7p (ORCPT ); Fri, 23 Aug 2013 04:59:45 -0400 Received: by mail-la0-f47.google.com with SMTP id eo20so268247lab.20 for ; Fri, 23 Aug 2013 01:59:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=aFx9l4pErdXh8bP+FQHeSaYVL2cJFSKGib86LGDMhfg=; b=f6absn1ypKD7ZbW8TF8hswklEyNCP3kmZBWjAgIYZZO1TSxvS1/dOfPX5nWCuDieRp WAdQ4V6gey8o9omct05XQCsxcXymrZKYQNtFTbhjxoo1KtPp+1slNDt7T8gvkba1ZPlD /LT99HHEycEX23Q3P+Rd5i7a37CvZUsz91n6XVD/y43zz5Ew0xPthwo4adS6V9u5KtgQ 5zy2e0nakX/kJEt4X8TEzuHu2uRYG9FYrRz3o04ONnZjhKluHiKKHYYXY8OzGRBdqROX jIlYC/3O/bGPJNdvCrjSSfdJPIPsj2C/EdN5H73n9fIw8ylyFYtG5/gPilILHxwFb+nn bzIg== X-Received: by 10.112.158.225 with SMTP id wx1mr566036lbb.37.1377248383869; Fri, 23 Aug 2013 01:59:43 -0700 (PDT) Received: from seldlx6523.corpusers.net. (host-95-195-223-171.mobileonline.telia.com. [95.195.223.171]) by mx.google.com with ESMTPSA id bg3sm3436442lbb.15.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 23 Aug 2013 01:59:43 -0700 (PDT) From: Eugene Krasnikov To: linux-wireless@vger.kernel.org Cc: wcn36xx@lists.infradead.org, Eugene Krasnikov Subject: [PATCH v2 14/16] wcn36xx: add Makefile Date: Fri, 23 Aug 2013 10:58:17 +0200 Message-Id: <1377248299-21007-15-git-send-email-k.eugene.e@gmail.com> X-Mailer: git-send-email 1.8.2.2 In-Reply-To: <1377248299-21007-1-git-send-email-k.eugene.e@gmail.com> References: <1377248299-21007-1-git-send-email-k.eugene.e@gmail.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-9.6 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Adding Makefile Signed-off-by: Eugene Krasnikov --- drivers/net/wireless/ath/wcn36xx/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 drivers/net/wireless/ath/wcn36xx/Makefile diff --git a/drivers/net/wireless/ath/wcn36xx/Makefile b/drivers/net/wireless/ath/wcn36xx/Makefile new file mode 100644 index 0000000..3351185 --- /dev/null +++ b/drivers/net/wireless/ath/wcn36xx/Makefile @@ -0,0 +1,9 @@ +obj-$(CONFIG_WCN36XX) := wcn36xx.o +wcn36xx-y += main.o \ + dxe.o \ + txrx.o \ + smd.o \ + pmc.o \ + debug.o + +