From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752571AbdEPKMS (ORCPT ); Tue, 16 May 2017 06:12:18 -0400 Received: from lelnx193.ext.ti.com ([198.47.27.77]:30991 "EHLO lelnx193.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751212AbdEPKMO (ORCPT ); Tue, 16 May 2017 06:12:14 -0400 Subject: Re: [PATCH v5 3/3] phy: Group vendor specific phy drivers To: Vivek Gautam , References: <1494485262-18995-1-git-send-email-vivek.gautam@codeaurora.org> <1494485262-18995-3-git-send-email-vivek.gautam@codeaurora.org> CC: "David S. Miller" , Geert Uytterhoeven , Yoshihiro Shimoda , Guenter Roeck , Heiko Stuebner , Viresh Kumar , Maxime Ripard , Chen-Yu Tsai , Sylwester Nawrocki , Krzysztof Kozlowski , Jaehoon Chung , Stephen Boyd , Martin Blumenstingl , , , , , , , From: Kishon Vijay Abraham I Message-ID: <16fc3965-d250-6c3d-7a62-ab8da1f034fc@ti.com> Date: Tue, 16 May 2017 15:40:18 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <1494485262-18995-3-git-send-email-vivek.gautam@codeaurora.org> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Vivek, On Thursday 11 May 2017 12:17 PM, Vivek Gautam wrote: > Adding vendor specific directories in phy to group > phy drivers under their respective vendor umbrella. > > Also updated the MAINTAINERS file to reflect the correct > directory structure for phy drivers. > > Signed-off-by: Vivek Gautam > Acked-by: Heiko Stuebner > Acked-by: Viresh Kumar > Acked-by: Krzysztof Kozlowski > Acked-by: Yoshihiro Shimoda > Reviewed-by: Jaehoon Chung > Cc: Kishon Vijay Abraham I > Cc: David S. Miller > Cc: Geert Uytterhoeven > Cc: Yoshihiro Shimoda > Cc: Guenter Roeck > Cc: Heiko Stuebner > Cc: Viresh Kumar > Cc: Maxime Ripard > Cc: Chen-Yu Tsai > Cc: Sylwester Nawrocki > Cc: Krzysztof Kozlowski > Cc: Jaehoon Chung > Cc: Stephen Boyd > Cc: Martin Blumenstingl > Cc: linux-arm-kernel@lists.infradead.org > Cc: linux-arm-msm@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > Cc: linux-omap@vger.kernel.org > Cc: linux-renesas-soc@vger.kernel.org > Cc: linux-rockchip@lists.infradead.org > Cc: linux-samsung-soc@vger.kernel.org > Cc: linux-usb@vger.kernel.org > --- > > Changes since v4: > - Reprepared the patch based on latest torvalds/master. > - Added new directory for amlogic, since there's a new patch [1] > coming in for amlogic platforms. > > Changes since v3: > - Added 'Acked-by' and 'Reviewed by' tags received for this patch. > - No functional change. > > Changes since v2: > - Rebased on linux-phy/next. > - Took care of drivers added/removed for each vendors since v2. > - Updated the 'Signed-off-by' tag with my current email id. > > Changes from v1: > - Updated the MAINTAINERS file to reflect the same change > in directory structure. > - Removed PHY_PLAT config as pointed out by Kishon. > So we don't require the second patch in the v1 of this series: > [PATCH 2/2] arm: mach-spear: Enable PHY_PLAT to meet dependency > - Renamed sunxi --> allwinner; rcar --> renesas. > - Fixed error coming with qcom Makefile. > > * Build tested multi_v7_defconfig. > * Build tested arm64 defconfig with all the involved configs enabled. > > [1] https://patchwork.kernel.org/patch/9684303/ > . . . . > diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig > index afaf7b643eeb..b353ac603ea0 100644 > --- a/drivers/phy/Kconfig > +++ b/drivers/phy/Kconfig > @@ -15,73 +15,6 @@ config GENERIC_PHY > phy users can obtain reference to the PHY. All the users of this . . . . > - > +menu "Platform Phy drivers" I don't think creating a new menu is required. I removed it and merged into linux-phy. Thanks Kishon