From patchwork Tue Nov 5 05:31:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alistair Popple X-Patchwork-Id: 288379 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 A08FA2C00F9 for ; Tue, 5 Nov 2013 16:31:30 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751571Ab3KEFb3 (ORCPT ); Tue, 5 Nov 2013 00:31:29 -0500 Received: from ipmail04.adl6.internode.on.net ([150.101.137.141]:36205 "EHLO ipmail04.adl6.internode.on.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751006Ab3KEFb3 (ORCPT ); Tue, 5 Nov 2013 00:31:29 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqIEAHqBeFKl5H4J/2dsb2JhbABZhkO9C4E/dIMlGIE5iAG+Qo9LHYQYA5gKkgmDOig Received: from ibmaus65.lnk.telstra.net (HELO localhost) ([165.228.126.9]) by ipmail04.adl6.internode.on.net with ESMTP; 05 Nov 2013 16:01:27 +1030 From: Alistair Popple To: linuxppc-dev@lists.ozlabs.org Cc: Alistair Popple , linux-ide@vger.kernel.org Subject: [PATCH 1/7] IBM Akebono: Add support to AHCI platform driver Date: Tue, 5 Nov 2013 16:31:05 +1100 Message-Id: <1383629471-16979-1-git-send-email-alistair@popple.id.au> 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 The new IBM Akebono board has an AHCI compliant SATA controller. This patch adds a compatible property for the new board to the AHCI platform driver. Signed-off-by: Alistair Popple Cc: linux-ide@vger.kernel.org --- 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 7d3b853..b20b130 100644 --- a/drivers/ata/ahci_platform.c +++ b/drivers/ata/ahci_platform.c @@ -328,6 +328,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", }, + { .compatible = "ibm,akebono-ahci", }, {}, }; MODULE_DEVICE_TABLE(of, ahci_of_match);