All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Boyd <sboyd@codeaurora.org>
To: Alex Elder <elder@linaro.org>
Cc: andy.gross@linaro.org, catalin.marinas@arm.com,
	will.deacon@arm.com, arnd@arndb.de,
	linux-arm-msm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/3] arm64: remove some unused defconfig options
Date: Tue, 24 Oct 2017 17:20:20 -0700	[thread overview]
Message-ID: <20171025002019.GC30645@codeaurora.org> (raw)
In-Reply-To: <20171020172021.8119-1-elder@linaro.org>

On 10/20, Alex Elder wrote:
> This series deletes three config options related to USB on Qualcomm
> SoCs from the arm64 "defconfig", along with the code that they
> enable.  The code is no longer needed by any Qualcomm hardware.  
> 
> 					-Alex
> 
> Alex Elder (3):
>   arm64: defconfig: remove CONFIG_USB_EHCI_MSM
>   arm64: defconfig: remove CONFIG_USB_MSM_OTG
>   arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY

As I said off-list, I would split this into defconfig for arm-soc
and drivers/usb for usb subsystem to pick up.

> 
>  arch/arm64/configs/defconfig        |    3 -
>  drivers/usb/host/Makefile           |    1 -
>  drivers/usb/host/ehci-msm.c         |  265 -----
>  drivers/usb/phy/Makefile            |    2 -
>  drivers/usb/phy/phy-msm-usb.c       | 2085 -----------------------------------
>  drivers/usb/phy/phy-qcom-8x16-usb.c |  366 ------
>  6 files changed, 2722 deletions(-)
>  delete mode 100644 drivers/usb/host/ehci-msm.c
>  delete mode 100644 drivers/usb/phy/phy-msm-usb.c
>  delete mode 100644 drivers/usb/phy/phy-qcom-8x16-usb.c
> 

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

WARNING: multiple messages have this Message-ID (diff)
From: sboyd@codeaurora.org (Stephen Boyd)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/3] arm64: remove some unused defconfig options
Date: Tue, 24 Oct 2017 17:20:20 -0700	[thread overview]
Message-ID: <20171025002019.GC30645@codeaurora.org> (raw)
In-Reply-To: <20171020172021.8119-1-elder@linaro.org>

On 10/20, Alex Elder wrote:
> This series deletes three config options related to USB on Qualcomm
> SoCs from the arm64 "defconfig", along with the code that they
> enable.  The code is no longer needed by any Qualcomm hardware.  
> 
> 					-Alex
> 
> Alex Elder (3):
>   arm64: defconfig: remove CONFIG_USB_EHCI_MSM
>   arm64: defconfig: remove CONFIG_USB_MSM_OTG
>   arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY

As I said off-list, I would split this into defconfig for arm-soc
and drivers/usb for usb subsystem to pick up.

> 
>  arch/arm64/configs/defconfig        |    3 -
>  drivers/usb/host/Makefile           |    1 -
>  drivers/usb/host/ehci-msm.c         |  265 -----
>  drivers/usb/phy/Makefile            |    2 -
>  drivers/usb/phy/phy-msm-usb.c       | 2085 -----------------------------------
>  drivers/usb/phy/phy-qcom-8x16-usb.c |  366 ------
>  6 files changed, 2722 deletions(-)
>  delete mode 100644 drivers/usb/host/ehci-msm.c
>  delete mode 100644 drivers/usb/phy/phy-msm-usb.c
>  delete mode 100644 drivers/usb/phy/phy-qcom-8x16-usb.c
> 

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

  parent reply	other threads:[~2017-10-25  0:20 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-20 17:20 [PATCH 0/3] arm64: remove some unused defconfig options Alex Elder
2017-10-20 17:20 ` Alex Elder
2017-10-20 17:20 ` [PATCH 1/3] arm64: defconfig: remove CONFIG_USB_EHCI_MSM Alex Elder
2017-10-20 17:20   ` Alex Elder
2017-10-25  7:00   ` Andy Gross
2017-10-25  7:00     ` Andy Gross
2017-10-20 17:20 ` [PATCH 2/3] arm64: defconfig: remove CONFIG_USB_MSM_OTG Alex Elder
2017-10-20 17:20   ` Alex Elder
2017-10-25  7:01   ` Andy Gross
2017-10-25  7:01     ` Andy Gross
2017-10-20 17:20 ` [PATCH 3/3] arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY Alex Elder
2017-10-20 17:20   ` Alex Elder
2017-10-25  7:01   ` Andy Gross
2017-10-25  7:01     ` Andy Gross
2017-10-25  0:20 ` Stephen Boyd [this message]
2017-10-25  0:20   ` [PATCH 0/3] arm64: remove some unused defconfig options Stephen Boyd
2017-10-25  7:02   ` Andy Gross
2017-10-25  7:02     ` Andy Gross
2017-10-25 15:12     ` Alex Elder
2017-10-25 15:12       ` Alex Elder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171025002019.GC30645@codeaurora.org \
    --to=sboyd@codeaurora.org \
    --cc=andy.gross@linaro.org \
    --cc=arnd@arndb.de \
    --cc=catalin.marinas@arm.com \
    --cc=elder@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=will.deacon@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.