From patchwork Thu Feb 7 11:57:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2110361 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id A56E8DFB7B for ; Thu, 7 Feb 2013 12:06:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757451Ab3BGMGs (ORCPT ); Thu, 7 Feb 2013 07:06:48 -0500 Received: from mail-da0-f47.google.com ([209.85.210.47]:63568 "EHLO mail-da0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756686Ab3BGMGs (ORCPT ); Thu, 7 Feb 2013 07:06:48 -0500 Received: by mail-da0-f47.google.com with SMTP id s35so1169877dak.6 for ; Thu, 07 Feb 2013 04:06:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=ngRsQA/NkxeGovWBgeJBRCmmfFNMqYL8xG7fkN1Ydq0=; b=oKO/QcL9LzGpvv8uAK+0eDq3DksjYZ+Hi3SE++6k8+AyHf3T91480RU7RcrV2Kw+nk PGMwP2l6G3FTqPdQihEt4AQpQNoYT4LtpRtHkPXylypfrXaMGGHRI/sq8yKKKakYK9E7 ubZf6gUZtz1MOS+/z5AyJz2s+jLI2Pf1Swa+ogRsiutx4ooBFAlQqMIAt8qP5f+nU7T6 rnOMZIYWXS3OgU2kL0ACaIvnDcYCWdUPAFL/Cv4ry0lxYbhL4KIXpkjftEmjygbl+nNp g+i/sfhrK1/nLIsFkZi6SXTBifF7m8qmIAhlwWkJJtT9M/P7ol5GKYnx3QawnJkseYxE emSg== X-Received: by 10.66.85.73 with SMTP id f9mr5397661paz.13.1360238806620; Thu, 07 Feb 2013 04:06:46 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id d1sm45515427pav.6.2013.02.07.04.06.43 (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 07 Feb 2013 04:06:45 -0800 (PST) From: Sachin Kamat To: linux-mmc@vger.kernel.org Cc: cjb@laptop.org, tgih.jun@samsung.com, jh80.chung@samsung.com, sachin.kamat@linaro.org, patches@linaro.org, Thomas Abraham Subject: [PATCH 1/2] mmc: dw_mmc: exynos: Add compatibility for exynos4412 SoC Date: Thu, 7 Feb 2013 17:27:15 +0530 Message-Id: <1360238236-17694-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQl6T5eigKO8lJMzah5brMSpIIE6T71KaYgwcf1LNAONSFBcpfCRf+Wlq0TdG52hFRS0VRhi Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org Added compatibility string for Exynos4412 SoC. Cc: Thomas Abraham Signed-off-by: Sachin Kamat --- drivers/mmc/host/dw_mmc-exynos.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c index 72fd0f2..f15b4d3 100644 --- a/drivers/mmc/host/dw_mmc-exynos.c +++ b/drivers/mmc/host/dw_mmc-exynos.c @@ -209,6 +209,8 @@ static const struct dw_mci_drv_data exynos5250_drv_data = { }; static const struct of_device_id dw_mci_exynos_match[] = { + { .compatible = "samsung,exynos4412-dw-mshc", + .data = &exynos5250_drv_data, }, { .compatible = "samsung,exynos5250-dw-mshc", .data = &exynos5250_drv_data, }, {},