From patchwork Sat Feb 2 01:56:24 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: 217636 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id EB37F2C0040 for ; Sat, 2 Feb 2013 12:57:24 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757296Ab3BBB5X (ORCPT ); Fri, 1 Feb 2013 20:57:23 -0500 Received: from mail-pb0-f44.google.com ([209.85.160.44]:47725 "EHLO mail-pb0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757284Ab3BBB5X (ORCPT ); Fri, 1 Feb 2013 20:57:23 -0500 Received: by mail-pb0-f44.google.com with SMTP id wz12so2388053pbc.31 for ; Fri, 01 Feb 2013 17:57:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=n7lKP4p/tov/kITceCHYYlloGBxduJXB15l3A/ezgU8=; b=WajnrNGP+KRqp89rfKrMGkWJWAR99miWsVrKMpkslIgFhF/2m19R2o3ZesbOUHBRSB pV5GCqgZ/tjsOIM4mxRZNEpD9mjHsPsVYFKD2xvJSSONIzQSj0fzan6HPuI6VR9Jvd6o tWmTf6Sradoimv1pvC5Z1Z9nhcWWEwHa6A4F/41AxI+Qtz4wCIydOEBefrTv/tvEKvtp MiBnRaz2l5kZ10phpQSdjWmkYs7SnLa4BbvqxyusFLNXR9f8P3k+H6IS9kT2l4h7Fu89 WfLVKLSI44xRX2MnFhsS5wPMFUt74E9SsaBnqI6Et3zaVmAEs5U95XiHNNyHMAbc2c0c YoDg== X-Received: by 10.68.254.195 with SMTP id ak3mr37532546pbd.37.1359770242928; Fri, 01 Feb 2013 17:57:22 -0800 (PST) Received: from localhost.localdomain (D3245024.uspool.samsung.com. [211.36.80.36]) by mx.google.com with ESMTPS id mn4sm10104399pbc.12.2013.02.01.17.57.21 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 01 Feb 2013 17:57:22 -0800 (PST) From: girishks2000@gmail.com To: linux-ide@vger.kernel.org Cc: kgene.kim@samsung.com, linux-arm-kernel@lists.infradead.org, Girish K S Subject: [PATCH 1/2] ahci: sata: add support for exynos5440 sata Date: Fri, 1 Feb 2013 17:56:24 -0800 Message-Id: <510c7282.a4d1440a.7061.2697@mx.google.com> X-Mailer: git-send-email 1.7.10.4 Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Girish K S 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 --- drivers/ata/ahci_platform.c | 1 + 1 file changed, 1 insertion(+) 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 = "samsung,exynos5440-ahci", }, {}, }; MODULE_DEVICE_TABLE(of, ahci_of_match);