From patchwork Wed Feb 5 19:01:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 317237 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 94B6D2C009E for ; Thu, 6 Feb 2014 06:02:11 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751458AbaBETCG (ORCPT ); Wed, 5 Feb 2014 14:02:06 -0500 Received: from mail-oa0-f43.google.com ([209.85.219.43]:58234 "EHLO mail-oa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751462AbaBETBz (ORCPT ); Wed, 5 Feb 2014 14:01:55 -0500 Received: by mail-oa0-f43.google.com with SMTP id h16so1012779oag.16 for ; Wed, 05 Feb 2014 11:01:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=ddlxqXPCN8wRLwzaByxrjypmeGoEBFgOB0YACEw+kvA=; b=U9NoEJGITYBFhPyyssZq7QfkhjTUaCoMIsyFR6TMup4IxvwD1Pl8M+Xa+TLOdOezO2 g/dfq76XKrhdWHY9fFA6bO186JyTHHrb93b9HI13EOioGiXXLtE/gdgh/xFJGBhQV6wd CZMWbpgvW8jumc48utGRkZnsWt5aK0o1a3i8Mz6I1cCQKJuU7rwATLBa120Jut8gVlpu AyGpETwayfegvnxaicpeOwmlZ7qOieVFLz6LTLVMfYHR4vmgjLu+XyL+iQ9blp66cl2/ 9IhY3gVv7/4LQbwaxZtV2JElNyfu1/QOKbglHOkCvWAfN3WT5m5nQEWhTw3gzMY6AkYG dPrw== X-Gm-Message-State: ALoCoQmZXkrtcoetQs3pNf1OR8XEQVHag2ybu5N0E8sho4LbsEWZcWfW9SC6IGHPPkVp1RCXqJkh X-Received: by 10.60.16.168 with SMTP id h8mr2896212oed.32.1391626915021; Wed, 05 Feb 2014 11:01:55 -0800 (PST) Received: from beef.ohporter.com (cpe-98-27-254-98.neo.res.rr.com. [98.27.254.98]) by mx.google.com with ESMTPSA id hl3sm50723767obb.0.2014.02.05.11.01.53 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Feb 2014 11:01:54 -0800 (PST) From: Matt Porter To: Jonathan Cameron , Grant Likely , Rob Herring , =?UTF-8?q?Beno=C3=AEt=20Cousson?= , Tony Lindgren , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Thierry Reding Cc: Linux IIO List , Linux Kernel Mailing List , Devicetree List , Linux PWM List , Linux OMAP List , Linux ARM Kernel List Subject: [PATCH v3 3/6] iio: enable selection and build of pulse drivers Date: Wed, 5 Feb 2014 14:01:38 -0500 Message-Id: <1391626901-31684-4-git-send-email-mporter@linaro.org> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1391626901-31684-1-git-send-email-mporter@linaro.org> References: <1391626901-31684-1-git-send-email-mporter@linaro.org> Sender: linux-pwm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pwm@vger.kernel.org Add the pulse driver subdirectory when configuring and building IIO. Signed-off-by: Matt Porter --- drivers/iio/Kconfig | 1 + drivers/iio/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/iio/Kconfig b/drivers/iio/Kconfig index 5dd0e12..286acc3 100644 --- a/drivers/iio/Kconfig +++ b/drivers/iio/Kconfig @@ -74,6 +74,7 @@ if IIO_TRIGGER source "drivers/iio/trigger/Kconfig" endif #IIO_TRIGGER source "drivers/iio/pressure/Kconfig" +source "drivers/iio/pulse/Kconfig" source "drivers/iio/temperature/Kconfig" endif # IIO diff --git a/drivers/iio/Makefile b/drivers/iio/Makefile index 887d390..9a953c9 100644 --- a/drivers/iio/Makefile +++ b/drivers/iio/Makefile @@ -24,5 +24,6 @@ obj-y += light/ obj-y += magnetometer/ obj-y += orientation/ obj-y += pressure/ +obj-y += pulse/ obj-y += temperature/ obj-y += trigger/