From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ie0-f175.google.com ([209.85.223.175]:55787 "EHLO mail-ie0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752295AbaA2VAP (ORCPT ); Wed, 29 Jan 2014 16:00:15 -0500 Received: by mail-ie0-f175.google.com with SMTP id ar20so2635874iec.34 for ; Wed, 29 Jan 2014 13:00:15 -0800 (PST) From: Matt Porter To: Jonathan Cameron , Grant Likely , Rob Herring , Benoit Cousson , Tony Lindgren , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Thierry Reding Cc: linux-iio@vger.kernel.org, Linux Kernel Mailing List , Devicetree List , linux-pwm@vger.kernel.org, Linux OMAP List , Linux ARM Kernel List , Linaro Patches Subject: [PATCH 3/5] iio: enable selection and build of pulse drivers Date: Wed, 29 Jan 2014 15:59:57 -0500 Message-Id: <1391029199-3670-4-git-send-email-mporter@linaro.org> In-Reply-To: <1391029199-3670-1-git-send-email-mporter@linaro.org> References: <1391029199-3670-1-git-send-email-mporter@linaro.org> Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@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/ -- 1.8.4