From patchwork Fri Oct 23 01:44:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jaedon Shin X-Patchwork-Id: 534690 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 780F814131F for ; Fri, 23 Oct 2015 12:45:33 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=kUPHpLBb; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752882AbbJWBpc (ORCPT ); Thu, 22 Oct 2015 21:45:32 -0400 Received: from mail-pa0-f44.google.com ([209.85.220.44]:36443 "EHLO mail-pa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751976AbbJWBpc (ORCPT ); Thu, 22 Oct 2015 21:45:32 -0400 Received: by pacfv9 with SMTP id fv9so107292287pac.3; Thu, 22 Oct 2015 18:45:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=81jJMFmvKSWHKRpxKEVuRSiMQqBvn2ddwOXfYFCH8/Q=; b=kUPHpLBbVBHdLo22XzOYcZf5HTvUaAr0YYgXSIC6RGx2wyNwtJee+LxZ4eOTFy9t2J Vs6uTfNXpPz77PWFZZGPZ0MlEi7iNoYijKbGGEBJP8m8q4r8rT/EkAQqfI+HhISpwsri YBT7c271sMT1K9dL9K4VzXV1DE/Gn73zohCgNAMl3+hhZMRDPC4bbZZJTUWi0hHV4fHa BH8srnfr/A1FoFweahC/SE01glPMmRegW/Z2Oawh/gkEwX3eRnyjrihjL0p+q/wK2sV5 FG8mAIlm9c4elAxyM9Us3oSYNi8z5GXrg2uXFh9i9uFSzdhxWM0qkZGxLP8Jal5la8zd w6RQ== X-Received: by 10.66.154.165 with SMTP id vp5mr1682802pab.90.1445564731706; Thu, 22 Oct 2015 18:45:31 -0700 (PDT) Received: from localhost.localdomain ([125.176.118.36]) by smtp.gmail.com with ESMTPSA id u10sm15955594pbs.63.2015.10.22.18.45.27 (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 22 Oct 2015 18:45:31 -0700 (PDT) From: Jaedon Shin To: Tejun Heo , Kishon Vijay Abraham I , Ralf Baechle , Florian Fainelli , Rob Herring Cc: linux-ide@vger.kernel.org, linux-mips@linux-mips.org, devicetree@vger.kernel.org, Jaedon Shin Subject: [PATCH 04/10] phy: phy_brcmstb_sata: make the driver buildable on BMIPS_GENERIC Date: Fri, 23 Oct 2015 10:44:17 +0900 Message-Id: <1445564663-66824-5-git-send-email-jaedon.shin@gmail.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1445564663-66824-1-git-send-email-jaedon.shin@gmail.com> References: <1445564663-66824-1-git-send-email-jaedon.shin@gmail.com> Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org The BCM7xxx ARM and MIPS platforms share a similar hardware block for AHCI SATA3 PHY. Signed-off-by: Jaedon Shin Acked-by: Florian Fainelli Acked-by: Brian Norris --- drivers/phy/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig index 47da573d0bab..c83e48661fd7 100644 --- a/drivers/phy/Kconfig +++ b/drivers/phy/Kconfig @@ -364,11 +364,11 @@ config PHY_TUSB1210 config PHY_BRCMSTB_SATA tristate "Broadcom STB SATA PHY driver" - depends on ARCH_BRCMSTB + depends on ARCH_BRCMSTB || BMIPS_GENERIC depends on OF select GENERIC_PHY help - Enable this to support the SATA3 PHY on 28nm Broadcom STB SoCs. + Enable this to support the SATA3 PHY on 28nm or 40nm Broadcom STB SoCs. Likely useful only with CONFIG_SATA_BRCMSTB enabled. endmenu