From patchwork Wed Oct 9 22:45:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 3012441 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id B63749F3EF for ; Wed, 9 Oct 2013 22:45:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F340E202F0 for ; Wed, 9 Oct 2013 22:45:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2894B202F8 for ; Wed, 9 Oct 2013 22:45:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753532Ab3JIWpS (ORCPT ); Wed, 9 Oct 2013 18:45:18 -0400 Received: from mail-pa0-f44.google.com ([209.85.220.44]:60539 "EHLO mail-pa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753317Ab3JIWpR (ORCPT ); Wed, 9 Oct 2013 18:45:17 -0400 Received: by mail-pa0-f44.google.com with SMTP id lf10so1742203pab.31 for ; Wed, 09 Oct 2013 15:45:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:subject; bh=xKMA9WIRSAE2EgpQCMhBLi1z+ULhP0cLpH+r0uYNIm0=; b=THLWT9/p+kigKpGB4+Dle+mW79DleEcB355UYc6hE7YPB/RA126oU5510hQIao7Mbj sdtByYOpLj9wqaFchRmz6I6K0TF5LuA83kbdY284spaz+fjwmjjJXrTo7uzcKp/ryahQ D0cfWEarourUlVTZVIpsh8dwNfJTQvZnEjAN5CJ2VNXYRCNuRVtI/uV1D7fzN9iy1P/H hpfspav4JJMKTGdZuf9kS99uRNKioUEE8T6I71jDsM/M2rX8+o/2eLtTLV2n0WeakDQe AyEynE4EB7N1ZV4KwuCow5esvAyA25xbHwcYyScukj0KD08D4bYbmWw1OD1y9SCp/kae grzQ== X-Received: by 10.68.4.232 with SMTP id n8mr10470204pbn.9.1381358717262; Wed, 09 Oct 2013 15:45:17 -0700 (PDT) Received: from [127.0.0.1] (ac230065.ppp.asahi-net.or.jp. [183.77.230.65]) by mx.google.com with ESMTPSA id fa4sm57598664pab.17.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 09 Oct 2013 15:45:16 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , cjb@laptop.org, linux-mmc@vger.kernel.org, g.liakhovetski@gmail.com, horms@verge.net.au Date: Thu, 10 Oct 2013 07:45:45 +0900 Message-Id: <20131009224545.23119.45781.sendpatchset@w520> Subject: [PATCH] mmc: sh_mmcif: Get rid of MMC_BLOCK dependency Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Spam-Status: No, score=-7.0 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 From: Magnus Damm It seems like sh_mmcif.c now is the only MMC driver depending on MMC_BLOCK, the hardware is not special in any way so rework the Kconfig dependency to be less special. Signed-off-by: Magnus Damm Reviewed-by: Simon Horman --- drivers/mmc/host/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/drivers/mmc/host/Kconfig +++ work/drivers/mmc/host/Kconfig 2013-10-08 18:03:17.000000000 +0900 @@ -588,7 +588,7 @@ config MMC_DW_PCI config MMC_SH_MMCIF tristate "SuperH Internal MMCIF support" - depends on MMC_BLOCK && (SUPERH || ARCH_SHMOBILE) + depends on SUPERH || ARCH_SHMOBILE help This selects the MMC Host Interface controller (MMCIF).