devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
To: Mike Turquette
	<mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org,
	bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org,
	lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org
Cc: balbi-l0cyMroinI0@public.gmane.org,
	nm-l0cyMroinI0@public.gmane.org,
	khilman-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
	linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org>
Subject: Re: [PATCH v8 06/14] CLK: TI: OMAP3: Get rid of unused USB Host dummy clocks
Date: Tue, 25 Feb 2014 11:32:19 +0200	[thread overview]
Message-ID: <530C6323.90205@ti.com> (raw)
In-Reply-To: <20140225084327.22529.86075@quantum>

Hi Mike,

On 02/25/2014 10:43 AM, Mike Turquette wrote:
> Quoting Roger Quadros (2014-02-20 03:40:01)
>> The OMAP USB Host MFD driver no longer expects these non-existing
>> clocks from the OMAP3 platform, so get rid of them.
> 
> Looks good to me.

Is it OK if I squash this patch with [1] and take it through the MFD tree?
Keeping them separate could break functionality if both don't go in together.

[1] - http://article.gmane.org/gmane.linux.ports.arm.kernel/303266

cheers,
-roger

> 
>>
>> CC: Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org>
>> CC: Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
>> Signed-off-by: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
>> ---
>>  arch/arm/mach-omap2/cclock3xxx_data.c | 4 ----
>>  drivers/clk/ti/clk-3xxx.c             | 4 ----
>>  2 files changed, 8 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/cclock3xxx_data.c b/arch/arm/mach-omap2/cclock3xxx_data.c
>> index 3b05aea..4299a55 100644
>> --- a/arch/arm/mach-omap2/cclock3xxx_data.c
>> +++ b/arch/arm/mach-omap2/cclock3xxx_data.c
>> @@ -3495,10 +3495,6 @@ static struct omap_clk omap3xxx_clks[] = {
>>         CLK(NULL,       "dss_tv_fck",   &dss_tv_fck),
>>         CLK(NULL,       "dss_96m_fck",  &dss_96m_fck),
>>         CLK(NULL,       "dss2_alwon_fck",       &dss2_alwon_fck),
>> -       CLK(NULL,       "utmi_p1_gfclk",        &dummy_ck),
>> -       CLK(NULL,       "utmi_p2_gfclk",        &dummy_ck),
>> -       CLK(NULL,       "xclk60mhsp1_ck",       &dummy_ck),
>> -       CLK(NULL,       "xclk60mhsp2_ck",       &dummy_ck),
>>         CLK(NULL,       "init_60m_fclk",        &dummy_ck),
>>         CLK(NULL,       "gpt1_fck",     &gpt1_fck),
>>         CLK(NULL,       "aes2_ick",     &aes2_ick),
>> diff --git a/drivers/clk/ti/clk-3xxx.c b/drivers/clk/ti/clk-3xxx.c
>> index d323023..0d1750a 100644
>> --- a/drivers/clk/ti/clk-3xxx.c
>> +++ b/drivers/clk/ti/clk-3xxx.c
>> @@ -130,10 +130,6 @@ static struct ti_dt_clk omap3xxx_clks[] = {
>>         DT_CLK(NULL, "dss_tv_fck", "dss_tv_fck"),
>>         DT_CLK(NULL, "dss_96m_fck", "dss_96m_fck"),
>>         DT_CLK(NULL, "dss2_alwon_fck", "dss2_alwon_fck"),
>> -       DT_CLK(NULL, "utmi_p1_gfclk", "dummy_ck"),
>> -       DT_CLK(NULL, "utmi_p2_gfclk", "dummy_ck"),
>> -       DT_CLK(NULL, "xclk60mhsp1_ck", "dummy_ck"),
>> -       DT_CLK(NULL, "xclk60mhsp2_ck", "dummy_ck"),
>>         DT_CLK(NULL, "init_60m_fclk", "dummy_ck"),
>>         DT_CLK(NULL, "gpt1_fck", "gpt1_fck"),
>>         DT_CLK(NULL, "aes2_ick", "aes2_ick"),
>> -- 
>> 1.8.3.2
>>

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2014-02-25  9:32 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-20 11:39 [PATCH v8 00/14] USB Host support for OMAP5 uEVM Roger Quadros
2014-02-20 11:39 ` [PATCH v8 01/14] mfd: omap-usb-host: Get clocks based on hardware revision Roger Quadros
2014-02-25  9:37   ` Lee Jones
2014-02-25  9:40     ` Roger Quadros
2014-02-20 11:39 ` [PATCH v8 02/14] mfd: omap-usb-host: Always fail on clk_get() error Roger Quadros
     [not found]   ` <1392896409-5101-3-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-02-25  9:59     ` Lee Jones
2014-02-25 10:28       ` Lee Jones
2014-02-20 11:39 ` [PATCH v8 03/14] mfd: omap-usb-host: Use clock names as per function for reference clocks Roger Quadros
2014-02-25  8:52   ` Lee Jones
2014-02-25  9:02     ` Roger Quadros
2014-02-25  9:18       ` Lee Jones
2014-02-25  9:25         ` Roger Quadros
2014-02-20 11:39 ` [PATCH v8 04/14] mfd: omap-usb-host: Update DT clock binding information Roger Quadros
2014-02-20 11:40 ` [PATCH v8 05/14] mfd: omap-usb-tll: " Roger Quadros
2014-02-20 11:40 ` [PATCH v8 06/14] CLK: TI: OMAP3: Get rid of unused USB Host dummy clocks Roger Quadros
2014-02-25  8:43   ` Mike Turquette
2014-02-25  9:32     ` Roger Quadros [this message]
2014-02-26 20:56       ` Mike Turquette
2014-02-20 11:40 ` [PATCH v8 07/14] ARM: OMAP3: hwmod data: Remove optional clock from usb_host_hs module Roger Quadros
2014-02-20 11:40 ` [PATCH v8 08/14] ARM: dts: omap4: Update omap-usb-host node Roger Quadros
2014-02-20 11:40 ` [PATCH v8 09/14] ARM: dts: omap5: " Roger Quadros
2014-02-20 11:40 ` [PATCH v8 10/14] ARM: dts: omap4-panda: Provide USB PHY clock Roger Quadros
2014-02-20 11:40 ` [PATCH v8 11/14] ARM: dts: omap5-uevm: " Roger Quadros
2014-02-20 11:40 ` [PATCH v8 12/14] ARM: OMAP2+: Remove legacy_init_ehci_clk() Roger Quadros
     [not found] ` <1392896409-5101-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2014-02-20 11:40   ` [PATCH v8 13/14] ARM: dts: OMAP2+: Get rid of incompatible ids for USB host nodes Roger Quadros
2014-02-20 11:40 ` [PATCH v8 14/14] usb: omap: dts: Update DT binding example usage Roger Quadros

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=530C6323.90205@ti.com \
    --to=rogerq-l0cymroini0@public.gmane.org \
    --cc=balbi-l0cyMroinI0@public.gmane.org \
    --cc=bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=khilman-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=nm-l0cyMroinI0@public.gmane.org \
    --cc=t-kristo-l0cyMroinI0@public.gmane.org \
    --cc=tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).