From patchwork Tue Dec 17 14:04:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulf Hansson X-Patchwork-Id: 3361911 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 34400C0D4B for ; Tue, 17 Dec 2013 14:04:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 27A5F20398 for ; Tue, 17 Dec 2013 14:04:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7EB8B201D3 for ; Tue, 17 Dec 2013 14:04:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753807Ab3LQOEa (ORCPT ); Tue, 17 Dec 2013 09:04:30 -0500 Received: from mail-lb0-f176.google.com ([209.85.217.176]:65283 "EHLO mail-lb0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753798Ab3LQOEa (ORCPT ); Tue, 17 Dec 2013 09:04:30 -0500 Received: by mail-lb0-f176.google.com with SMTP id l4so1435079lbv.7 for ; Tue, 17 Dec 2013 06:04:28 -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=g6Xxly2wismsSYW1k5RSWQPTT6VhTFLiQ+StiRb5i2I=; b=YHs1tve0FV1FMUIhEdriw85ExSlh+PhGqRAo1nlRYu1V63ONfLrh8R63uh5wPKut67 0cIZZjGqIwqU397P8ejxfOh71oiM2IhcEo5WTJC/d0i1YUhO90jY60EGVqXdKDPuTkuR 0B6jZGWudIdggEaGHKvVGVs+kpKDHiGO+ySJndxa/wIIMCBQmmQI7OC8AtY+QM26kEnn y1pxtmApj9m/2fheAw8oEk05k7wRAvs6Nq3aUznwYb8tnqOTmnSEGzK5hz+CrBtYVI3X O9QY2GZ1Si+3SGByR5ScdR0V4yYrHMeotU+8NgjVLXkzwE8+T3cBBaG21StA2bwtt4cp MPhg== X-Gm-Message-State: ALoCoQlnc9HoS3umCWzQA3cfpJ+R/CFdNRJ7nIv/HFPvDCE9GRXuPB4o8YE7XPOQON1fTVhwyEng X-Received: by 10.112.135.102 with SMTP id pr6mr486952lbb.43.1387289068706; Tue, 17 Dec 2013 06:04:28 -0800 (PST) Received: from linaro-ulf.lan (90-231-160-185-no158.tbcn.telia.com. [90.231.160.185]) by mx.google.com with ESMTPSA id bl6sm1684306lbb.5.2013.12.17.06.04.27 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 17 Dec 2013 06:04:28 -0800 (PST) From: Ulf Hansson To: linux-mmc@vger.kernel.org, Chris Ball Cc: Ulf Hansson Subject: [PATCH 2/3] mmc: core: Remove unused host cap MMC_CAP2_BROKEN_VOLTAGE Date: Tue, 17 Dec 2013 15:04:17 +0100 Message-Id: <1387289058-19755-2-git-send-email-ulf.hansson@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1387289058-19755-1-git-send-email-ulf.hansson@linaro.org> References: <1387289058-19755-1-git-send-email-ulf.hansson@linaro.org> 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.4 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, 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 Signed-off-by: Ulf Hansson --- include/linux/mmc/host.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 47fcc5d..a76993c 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -272,7 +272,6 @@ struct mmc_host { #define MMC_CAP2_HS200_1_2V_SDR (1 << 6) /* can support */ #define MMC_CAP2_HS200 (MMC_CAP2_HS200_1_8V_SDR | \ MMC_CAP2_HS200_1_2V_SDR) -#define MMC_CAP2_BROKEN_VOLTAGE (1 << 7) /* Use the broken voltage */ #define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */ #define MMC_CAP2_CD_ACTIVE_HIGH (1 << 10) /* Card-detect signal active high */ #define MMC_CAP2_RO_ACTIVE_HIGH (1 << 11) /* Write-protect signal active high */