From patchwork Wed Jan 29 20:59:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 315220 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 B47D32C00D1 for ; Thu, 30 Jan 2014 08:01:10 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752460AbaA2VAU (ORCPT ); Wed, 29 Jan 2014 16:00:20 -0500 Received: from mail-ie0-f179.google.com ([209.85.223.179]:59429 "EHLO mail-ie0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752312AbaA2VAQ (ORCPT ); Wed, 29 Jan 2014 16:00:16 -0500 Received: by mail-ie0-f179.google.com with SMTP id ar20so2652446iec.38 for ; Wed, 29 Jan 2014 13:00:15 -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=mgc3O9HHvSycfWOXtcg1nelyRvuGxCmxQ6xWiRcOTlEXj1+juoN14lkhAAIt4a6Cik jT3ZwTfyeDQAeQgPHd8J5dz58fRrjTmRjlkbVLfoJ+JmfV2W+hBwdcH16z5/0LdzqfbU olhKMEC65eNFoUPlsFBPGsQBZKAhcGEA6Oa2KzdtN0IySOmoopo08PLPwRH8pcYIcQly mUlIUKvheA7b8CpXIZmnVKvF/T+lWT7+c/5S+FEOPXkqRoLWx1qnEExjee+wt1CTULnD VG+MvtziYkpOE9WVcBMzunGfgd3PSTLQPFccStzSdZ96G46GqZcuDfDO8kMkBRLR54rf SvYg== X-Gm-Message-State: ALoCoQlDm3FpFhUcmJF53iVm8LwV1U7GDxhGCIZ9mpPWmXm3isM4VvNPCggLELuCsvZzd1RFbWJk X-Received: by 10.43.171.194 with SMTP id nv2mr7935566icc.7.1391029215472; Wed, 29 Jan 2014 13:00:15 -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 ni8sm71723595igb.7.2014.01.29.13.00.14 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 29 Jan 2014 13:00:14 -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> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1391029199-3670-1-git-send-email-mporter@linaro.org> References: <1391029199-3670-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/