Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753385AbbBYLsl (ORCPT ); Wed, 25 Feb 2015 06:48:41 -0500 Received: from mailapp01.imgtec.com ([195.59.15.196]:12102 "EHLO mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753231AbbBYLsH (ORCPT ); Wed, 25 Feb 2015 06:48:07 -0500 From: Ezequiel Garcia To: Thierry Reding , Stephen Warren , Arnd Bergmann , Maxime Ripard , Andrew Bresticker , James Hartley CC: , , Ezequiel Garcia , Thierry Reding , Stefan Wahren Subject: [PATCH 3/7] drivers: Introduce new eFuse subsystem stub Date: Wed, 25 Feb 2015 08:45:15 -0300 Message-ID: <1424864719-3390-4-git-send-email-ezequiel.garcia@imgtec.com> X-Mailer: git-send-email 2.3.0 In-Reply-To: <1424864719-3390-1-git-send-email-ezequiel.garcia@imgtec.com> References: <1424864719-3390-1-git-send-email-ezequiel.garcia@imgtec.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.100.200.222] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1920 Lines: 64 This commit introduces a new eFuse subsystem stub to hold all the eFuse-like device drivers. This will be used to host the currently supported Tegra eFuse driver, and will allow to add support for other platforms as well. Cc: Thierry Reding Cc: Stephen Warren Cc: Maxime Ripard Cc: Arnd Bergmann Cc: Stefan Wahren Signed-off-by: Ezequiel Garcia --- drivers/Kconfig | 2 ++ drivers/Makefile | 1 + drivers/efuse/Kconfig | 3 +++ drivers/efuse/Makefile | 0 4 files changed, 6 insertions(+) create mode 100644 drivers/efuse/Kconfig create mode 100644 drivers/efuse/Makefile diff --git a/drivers/Kconfig b/drivers/Kconfig index c0cc96b..9c0d93d 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -146,6 +146,8 @@ source "drivers/remoteproc/Kconfig" source "drivers/rpmsg/Kconfig" +source "drivers/efuse/Kconfig" + source "drivers/soc/Kconfig" source "drivers/devfreq/Kconfig" diff --git a/drivers/Makefile b/drivers/Makefile index 527a6da..5572728 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -34,6 +34,7 @@ obj-y += amba/ obj-$(CONFIG_DMADEVICES) += dma/ # SOC specific infrastructure drivers. +obj-y += efuse/ obj-y += soc/ obj-$(CONFIG_VIRTIO) += virtio/ diff --git a/drivers/efuse/Kconfig b/drivers/efuse/Kconfig new file mode 100644 index 0000000..617476f --- /dev/null +++ b/drivers/efuse/Kconfig @@ -0,0 +1,3 @@ +menu "eFuse drivers" + +endmenu diff --git a/drivers/efuse/Makefile b/drivers/efuse/Makefile new file mode 100644 index 0000000..e69de29 -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/