From patchwork Fri Jul 26 13:09:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejun Heo X-Patchwork-Id: 262156 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 8084C2C00BD for ; Fri, 26 Jul 2013 23:17:23 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757321Ab3GZNRW (ORCPT ); Fri, 26 Jul 2013 09:17:22 -0400 Received: from mail-gh0-f177.google.com ([209.85.160.177]:38807 "EHLO mail-gh0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754952Ab3GZNRW (ORCPT ); Fri, 26 Jul 2013 09:17:22 -0400 X-Greylist: delayed 80686 seconds by postgrey-1.27 at vger.kernel.org; Fri, 26 Jul 2013 09:17:21 EDT Received: by mail-gh0-f177.google.com with SMTP id f20so857351ghb.36 for ; Fri, 26 Jul 2013 06:17:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=GuutFRvKxOsGA0Fqwr3+pndJzENTfEJgHXyKEASv+MQ=; b=hxb0WsHNCSn8aKCvrBJ2OdowDggS6QY/x1vfQERd9zgr+BGZedRs76mugLTxHYMlxk q4ErILGHgTFilAq5DOxAoc8tNobMg1mS8A7UH1Ote1y2bUujH972ZktxT8ZBJopFu+0V Uac19DhPGLAcAn/wZ9kJaoYq1yOPwYxyKLZEhkU6oxEMSDcDoe1GAtVlcawRP+zbIxu1 4sTs4c+ApHkHddlITpBDnA40CXK60skV9nIXkKnhMLg6krTDouWNUJ9nw32mpx9MOSBB mtPAqca7CWKaFwbwS8/hqORgxAMZVLUTqfypZnjLyU4szJa7D09F6CCkCldVwpa5hXXf aIkw== X-Received: by 10.236.195.1 with SMTP id o1mr9800418yhn.137.1374844169121; Fri, 26 Jul 2013 06:09:29 -0700 (PDT) Received: from htj.dyndns.org (207-38-225-25.c3-0.43d-ubr1.qens-43d.ny.cable.rcn.com. [207.38.225.25]) by mx.google.com with ESMTPSA id f67sm64394201yhh.9.2013.07.26.06.09.27 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 26 Jul 2013 06:09:28 -0700 (PDT) Date: Fri, 26 Jul 2013 09:09:26 -0400 From: Tejun Heo To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, linux-ide@vger.kernel.org Subject: Re: [GIT PULL] libata changes for v3.11-rc2 Message-ID: <20130726130926.GC3013@htj.dyndns.org> References: <20130725175310.GI26107@mtj.dyndns.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20130725175310.GI26107@mtj.dyndns.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org Hello, Linus. The ahci_imx addition was missing dependency on CONFIG_MFD_SYSCON leading to build failures depending on config combination. A patch was added to address the issue. The modified pull request follows. Thanks. The following changes since commit ad81f0545ef01ea651886dddac4bef6cec930092: Linux 3.11-rc1 (2013-07-14 15:18:27 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git for-3.11-fixes for you to fetch changes up to 867974fc09f93bdd7f98d46ac3733934486bbf4a: ahci_imx: depend on CONFIG_MFD_SYSCON (2013-07-26 08:57:56 -0400) ---------------------------------------------------------------- Jingoo Han (1): libata: replace strict_strtol() with kstrtol() Richard Zhu (2): ARM: imx6q: update the sata bits definitions of gpr13 ahci_imx: add ahci sata support on imx platforms Tejun Heo (2): libata: make it clear that sata_inic162x is experimental ahci_imx: depend on CONFIG_MFD_SYSCON Xiaotian Feng (1): ahci: fix Null pointer dereference in achi_host_active() Youquan Song (1): ata: Fix DVD not dectected at some platform with Wellsburg PCH drivers/ata/Kconfig | 11 +- drivers/ata/Makefile | 1 + drivers/ata/ahci.c | 9 +- drivers/ata/ahci_imx.c | 236 ++++++++++++++++++++++++++++ drivers/ata/ata_piix.c | 2 +- drivers/ata/libata-scsi.c | 6 +- drivers/ata/sata_inic162x.c | 14 ++ include/linux/mfd/syscon/imx6q-iomuxc-gpr.h | 121 +++++++++----- 8 files changed, 358 insertions(+), 42 deletions(-) create mode 100644 drivers/ata/ahci_imx.c