All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL
@ 2019-01-09  8:28 Alexey Brodkin
  2019-01-10 12:57 ` Simon Glass
  0 siblings, 1 reply; 4+ messages in thread
From: Alexey Brodkin @ 2019-01-09  8:28 UTC (permalink / raw)
  To: u-boot

CONFIG_DW_SERIAL is no longer used anywhere so let's forget about it.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Tom Rini <trini@konsulko.com>
Cc: Adam Ford <aford173@gmail.com>
Cc: Mario Six <mario.six@gdsys.cc>
Cc: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Cc: Alex Kiernan <alex.kiernan@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: "Jörg Krause" <joerg.krause@embedded.rocks>
Cc: Stephen Warren <swarren@nvidia.com>
---
 include/configs/axs10x.h     | 1 -
 include/configs/hsdk.h       | 1 -
 scripts/config_whitelist.txt | 1 -
 3 files changed, 3 deletions(-)

diff --git a/include/configs/axs10x.h b/include/configs/axs10x.h
index 1b2966fd61..9452b06771 100644
--- a/include/configs/axs10x.h
+++ b/include/configs/axs10x.h
@@ -45,7 +45,6 @@
 /*
  * UART configuration
  */
-#define CONFIG_DW_SERIAL
 #define CONFIG_SYS_NS16550_SERIAL
 #define CONFIG_SYS_NS16550_CLK		33333333
 #define CONFIG_SYS_NS16550_MEM32
diff --git a/include/configs/hsdk.h b/include/configs/hsdk.h
index cdf4fddd94..94c88b29f1 100644
--- a/include/configs/hsdk.h
+++ b/include/configs/hsdk.h
@@ -40,7 +40,6 @@
 /*
  * UART configuration
  */
-#define CONFIG_DW_SERIAL
 #define CONFIG_SYS_NS16550_SERIAL
 #define CONFIG_SYS_NS16550_CLK		33330000
 #define CONFIG_SYS_NS16550_MEM32
diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt
index 527050de97..8d381788ca 100644
--- a/scripts/config_whitelist.txt
+++ b/scripts/config_whitelist.txt
@@ -429,7 +429,6 @@ CONFIG_DW_ALTDESCRIPTOR
 CONFIG_DW_AXI_BURST_LEN
 CONFIG_DW_GMAC_DEFAULT_DMA_PBL
 CONFIG_DW_MAC_FORCE_THRESHOLD_MODE
-CONFIG_DW_SERIAL
 CONFIG_DW_UDC
 CONFIG_DW_WDT_BASE
 CONFIG_DW_WDT_CLOCK_KHZ
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL
  2019-01-09  8:28 [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL Alexey Brodkin
@ 2019-01-10 12:57 ` Simon Glass
  2019-01-14 13:56   ` Alexey Brodkin
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Glass @ 2019-01-10 12:57 UTC (permalink / raw)
  To: u-boot

On Wed, 9 Jan 2019 at 01:28, Alexey Brodkin <alexey.brodkin@synopsys.com> wrote:
>
> CONFIG_DW_SERIAL is no longer used anywhere so let's forget about it.
>
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> Cc: Tom Rini <trini@konsulko.com>
> Cc: Adam Ford <aford173@gmail.com>
> Cc: Mario Six <mario.six@gdsys.cc>
> Cc: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
> Cc: Alex Kiernan <alex.kiernan@gmail.com>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: "Jörg Krause" <joerg.krause@embedded.rocks>
> Cc: Stephen Warren <swarren@nvidia.com>
> ---
>  include/configs/axs10x.h     | 1 -
>  include/configs/hsdk.h       | 1 -
>  scripts/config_whitelist.txt | 1 -
>  3 files changed, 3 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL
  2019-01-10 12:57 ` Simon Glass
@ 2019-01-14 13:56   ` Alexey Brodkin
  2019-01-14 14:14     ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Alexey Brodkin @ 2019-01-14 13:56 UTC (permalink / raw)
  To: u-boot

Hi Simon, Tom,

> -----Original Message-----
> From: Simon Glass [mailto:sjg at chromium.org]
> Sent: Thursday, January 10, 2019 3:57 PM
> To: Alexey Brodkin <alexey.brodkin@synopsys.com>
> Cc: U-Boot Mailing List <u-boot@lists.denx.de>; uboot-snps-arc at synopsys.com; Tom Rini
> <trini@konsulko.com>; Adam Ford <aford173@gmail.com>; Mario Six <mario.six@gdsys.cc>; Tuomas Tynkkynen
> <tuomas.tynkkynen@iki.fi>; Alex Kiernan <alex.kiernan@gmail.com>; Jörg Krause
> <joerg.krause@embedded.rocks>; Stephen Warren <swarren@nvidia.com>
> Subject: Re: [PATCH] serial: Get rid of CONFIG_DW_SERIAL
> 
> On Wed, 9 Jan 2019 at 01:28, Alexey Brodkin <alexey.brodkin@synopsys.com> wrote:
> >
> > CONFIG_DW_SERIAL is no longer used anywhere so let's forget about it.
> >
> > Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> > Cc: Tom Rini <trini@konsulko.com>
> > Cc: Adam Ford <aford173@gmail.com>
> > Cc: Mario Six <mario.six@gdsys.cc>
> > Cc: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
> > Cc: Alex Kiernan <alex.kiernan@gmail.com>
> > Cc: Simon Glass <sjg@chromium.org>
> > Cc: "Jörg Krause" <joerg.krause@embedded.rocks>
> > Cc: Stephen Warren <swarren@nvidia.com>
> > ---
> >  include/configs/axs10x.h     | 1 -
> >  include/configs/hsdk.h       | 1 -
> >  scripts/config_whitelist.txt | 1 -
> >  3 files changed, 3 deletions(-)
> 
> Reviewed-by: Simon Glass <sjg@chromium.org>

Should I apply it to my tree or either of you is
going to pick this one up as it's not strictly
ARC-related change (even though other arches are not affected)?

-Alexey

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL
  2019-01-14 13:56   ` Alexey Brodkin
@ 2019-01-14 14:14     ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-01-14 14:14 UTC (permalink / raw)
  To: u-boot

On Mon, Jan 14, 2019 at 01:56:56PM +0000, Alexey Brodkin wrote:
> Hi Simon, Tom,
> 
> > -----Original Message-----
> > From: Simon Glass [mailto:sjg at chromium.org]
> > Sent: Thursday, January 10, 2019 3:57 PM
> > To: Alexey Brodkin <alexey.brodkin@synopsys.com>
> > Cc: U-Boot Mailing List <u-boot@lists.denx.de>; uboot-snps-arc at synopsys.com; Tom Rini
> > <trini@konsulko.com>; Adam Ford <aford173@gmail.com>; Mario Six <mario.six@gdsys.cc>; Tuomas Tynkkynen
> > <tuomas.tynkkynen@iki.fi>; Alex Kiernan <alex.kiernan@gmail.com>; Jörg Krause
> > <joerg.krause@embedded.rocks>; Stephen Warren <swarren@nvidia.com>
> > Subject: Re: [PATCH] serial: Get rid of CONFIG_DW_SERIAL
> > 
> > On Wed, 9 Jan 2019 at 01:28, Alexey Brodkin <alexey.brodkin@synopsys.com> wrote:
> > >
> > > CONFIG_DW_SERIAL is no longer used anywhere so let's forget about it.
> > >
> > > Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> > > Cc: Tom Rini <trini@konsulko.com>
> > > Cc: Adam Ford <aford173@gmail.com>
> > > Cc: Mario Six <mario.six@gdsys.cc>
> > > Cc: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
> > > Cc: Alex Kiernan <alex.kiernan@gmail.com>
> > > Cc: Simon Glass <sjg@chromium.org>
> > > Cc: "Jörg Krause" <joerg.krause@embedded.rocks>
> > > Cc: Stephen Warren <swarren@nvidia.com>
> > > ---
> > >  include/configs/axs10x.h     | 1 -
> > >  include/configs/hsdk.h       | 1 -
> > >  scripts/config_whitelist.txt | 1 -
> > >  3 files changed, 3 deletions(-)
> > 
> > Reviewed-by: Simon Glass <sjg@chromium.org>
> 
> Should I apply it to my tree or either of you is
> going to pick this one up as it's not strictly
> ARC-related change (even though other arches are not affected)?

I think I had assigned it to you in patchwork, so please take it,
thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190114/c946f3eb/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-01-14 14:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-09  8:28 [U-Boot] [PATCH] serial: Get rid of CONFIG_DW_SERIAL Alexey Brodkin
2019-01-10 12:57 ` Simon Glass
2019-01-14 13:56   ` Alexey Brodkin
2019-01-14 14:14     ` Tom Rini

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.