From patchwork Tue Apr 16 09:28:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: girishks2000@gmail.com X-Patchwork-Id: 2448501 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork1.kernel.org (Postfix) with ESMTP id 1A4A33FD40 for ; Tue, 16 Apr 2013 09:28:35 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1US2Bh-0003Zh-7d; Tue, 16 Apr 2013 09:28:29 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1US2Ba-0000yG-2p; Tue, 16 Apr 2013 09:28:22 +0000 Received: from mail-pa0-f54.google.com ([209.85.220.54]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1US2BX-0000xs-Kf for linux-arm-kernel@lists.infradead.org; Tue, 16 Apr 2013 09:28:20 +0000 Received: by mail-pa0-f54.google.com with SMTP id fa11so244649pad.41 for ; Tue, 16 Apr 2013 02:28:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer; bh=/TQHIRdtMXV8ZEbdZXORL7UMl0NcHcDfcJhHQGM4Q2k=; b=F5P8kY/FI0Uc8bhz7gRCylp0diCuOGOiOOQI8iTKVpOuH6FTs0zzV754t18PTdv0gW VrRckOPSmVc5iQYi5s5RhH7XYxYwrTLEv6itzpAyqwN2cBLXCLxRssTSDQfgPsTWypAw NTx3bViOMhZCBErEL9zpRVJo9F/1+zTT3p1Xz0loKJIJrR0UWqzX4l7/0SzfUDiiN7t8 GT0NqJMEZQVF7s5PTvT85I/mpeb2hVY8+KXbmtJehlm0/WSz5ZaMYdP83MLzx9ixIf5t 10tgqLjxPzd3d/dnUX7l8eu8bLUG2rxvWUT55JR+W4Tu665rmNKpWVwj01g4o0X9Xytl mZgw== X-Received: by 10.66.164.161 with SMTP id yr1mr2612205pab.77.1366104497265; Tue, 16 Apr 2013 02:28:17 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id to7sm1992883pab.0.2013.04.16.02.28.13 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 16 Apr 2013 02:28:15 -0700 (PDT) From: Girish K S To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-ide@vger.kernel.org Subject: [PATCH V2] ahci: sata: add support for exynos5440 sata Date: Tue, 16 Apr 2013 14:58:02 +0530 Message-Id: <1366104482-14240-1-git-send-email-ks.giri@samsung.com> X-Mailer: git-send-email 1.7.5.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130416_052819_769595_0D73BB4A X-CRM114-Status: GOOD ( 12.47 ) X-Spam-Score: -2.5 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.5 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (girishks2000[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.220.54 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.2 FREEMAIL_ENVFROM_END_DIGIT Envelope-from freemail username ends in digit (girishks2000[at]gmail.com) -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org This patch adds the compatible string of the exynos5440 sata controller compliant with the ahci 1.3 and sata 3.0 specification. Signed-off-by: Girish K S changes in v2: changed the compatible string by adding the actual IP owners name instead of the SoC vendor name. --- drivers/ata/ahci_platform.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/ata/ahci_platform.c b/drivers/ata/ahci_platform.c index 7a8a284..c06f021 100644 --- a/drivers/ata/ahci_platform.c +++ b/drivers/ata/ahci_platform.c @@ -327,6 +327,7 @@ static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_suspend, ahci_resume); static const struct of_device_id ahci_of_match[] = { { .compatible = "snps,spear-ahci", }, + { .compatible = "snps,exynos5440-ahci", }, {}, }; MODULE_DEVICE_TABLE(of, ahci_of_match);