public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: ben-linux@fluff•org (Ben Dooks)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH 02/16] drivers: serial: S5PC100 serial driver cleanup
Date: Tue, 6 Apr 2010 16:59:51 +0100	[thread overview]
Message-ID: <20100406155951.GS31126@trinity.fluff.org> (raw)
In-Reply-To: <1270190944-21644-3-git-send-email-m.szyprowski@samsung.com>

On Fri, Apr 02, 2010 at 08:48:50AM +0200, Marek Szyprowski wrote:
> Remove unnecessary Kconfig entry. S5PC100 has exactly the same driver as
> S3C6400/S3C6410/S5P6440.
> 
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung•com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung•com>
> ---
>  drivers/serial/Kconfig  |   10 +---------
>  drivers/serial/Makefile |    1 -
>  2 files changed, 1 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
> index f55c494..b68ea18 100644
> --- a/drivers/serial/Kconfig
> +++ b/drivers/serial/Kconfig
> @@ -534,21 +534,13 @@ config SERIAL_S3C24A0
>  
>  config SERIAL_S3C6400
>  	tristate "Samsung S3C6400/S3C6410/S5P6440 Seria port support"

it would have been nice to update the list of supported devices above.

> -	depends on SERIAL_SAMSUNG && (CPU_S3C6400 || CPU_S3C6410 || CPU_S5P6440)
> +	depends on SERIAL_SAMSUNG && (CPU_S3C6400 || CPU_S3C6410 || CPU_S5P6440 || CPU_S5PC100)
>  	select SERIAL_SAMSUNG_UARTS_4
>  	default y
>  	help
>  	  Serial port support for the Samsung S3C6400, S3C6410 and S5P6440
>  	  SoCs
>  
> -config SERIAL_S5PC100
> -	tristate "Samsung S5PC100 Serial port support"
> -	depends on SERIAL_SAMSUNG && CPU_S5PC100
> -	select SERIAL_SAMSUNG_UARTS_4
> -	default y
> -	help
> -	  Serial port support for the Samsung S5PC100 SoCs
> -
>  config SERIAL_S5PV210
>  	tristate "Samsung S5PV210 Serial port support"
>  	depends on SERIAL_SAMSUNG && (CPU_S5PV210 || CPU_S5P6442)
> diff --git a/drivers/serial/Makefile b/drivers/serial/Makefile
> index 6aa4723..328f107 100644
> --- a/drivers/serial/Makefile
> +++ b/drivers/serial/Makefile
> @@ -44,7 +44,6 @@ obj-$(CONFIG_SERIAL_S3C2412) += s3c2412.o
>  obj-$(CONFIG_SERIAL_S3C2440) += s3c2440.o
>  obj-$(CONFIG_SERIAL_S3C24A0) += s3c24a0.o
>  obj-$(CONFIG_SERIAL_S3C6400) += s3c6400.o
> -obj-$(CONFIG_SERIAL_S5PC100) += s3c6400.o
>  obj-$(CONFIG_SERIAL_S5PV210) += s5pv210.o
>  obj-$(CONFIG_SERIAL_MAX3100) += max3100.o
>  obj-$(CONFIG_SERIAL_IP22_ZILOG) += ip22zilog.o
> -- 
> 1.6.4
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

-- 
-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.

  reply	other threads:[~2010-04-06 15:59 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-02  6:48 [PATCH] ARM: Samsung: S5PC100 platform cleanup Marek Szyprowski
2010-04-02  6:48 ` [PATCH 01/16] ARM: S5PC1xx rename registers to match plat-s5p style Marek Szyprowski
2010-05-12  4:55   ` Kukjin Kim
2010-05-12  5:33     ` Marek Szyprowski
2010-05-13  0:54   ` Ben Dooks
2010-04-02  6:48 ` [PATCH 02/16] drivers: serial: S5PC100 serial driver cleanup Marek Szyprowski
2010-04-06 15:59   ` Ben Dooks [this message]
2010-04-08  8:08     ` Marek Szyprowski
2010-04-02  6:48 ` [PATCH 03/16] ARM: Samsung: plat-s5p - enable access to clk_27m clock Marek Szyprowski
2010-05-12  4:55   ` Kukjin Kim
2010-05-12 16:14     ` Marek Szyprowski
2010-04-02  6:48 ` [PATCH 04/16] ARM: S5PC100: copy clocks from plat-s5pc1xx Marek Szyprowski
2010-05-12  4:55   ` Kukjin Kim
2010-05-12  5:22     ` Marek Szyprowski
2010-04-02  6:48 ` [PATCH 05/16] ARM: S5PC100: new clocks definition Marek Szyprowski
2010-05-12  4:56   ` Kukjin Kim
2010-05-12  6:43     ` Marek Szyprowski
2010-05-12  7:34       ` Kukjin Kim
2010-05-12  8:37         ` Marek Szyprowski
2010-05-12  8:48           ` Jassi Brar
2010-05-13  0:59           ` Ben Dooks
2010-05-12 17:48     ` Marek Szyprowski
2010-05-13  0:22       ` Kukjin Kim
2010-04-02  6:48 ` [PATCH 06/16] ARM: Samsung: move S5PC100 support from plat-s5pc1xx to plat-s5p framework Marek Szyprowski
2010-05-12  5:41   ` Kukjin Kim
2010-05-12  5:54     ` Marek Szyprowski
2010-05-12  6:31       ` jassi brar
2010-05-12  6:40         ` Marek Szyprowski
2010-05-12  6:57           ` jassi brar
2010-04-02  6:48 ` [PATCH 07/16] ARM: S5PC100: Move gpio support from plat-s5pc1xx to mach-s5pc100 Marek Szyprowski
2010-05-12  5:50   ` Kukjin Kim
2010-05-12  6:02     ` Marek Szyprowski
2010-05-13  1:05   ` Ben Dooks
2010-04-02  6:48 ` [PATCH 08/16] ARM: S5PC100: Move frame buffer helpers " Marek Szyprowski
2010-05-12  5:52   ` Kukjin Kim
2010-05-12  6:08     ` Marek Szyprowski
2010-04-02  6:48 ` [PATCH 09/16] ARM: SMDKC100: enable frame buffer again Marek Szyprowski
2010-05-12  5:55   ` Kukjin Kim
2010-04-02  6:48 ` [PATCH 10/16] ARM: S5PC100: Move i2c helpers from plat-s5pc1xx to mach-s5pc100 Marek Szyprowski
2010-05-12  6:05   ` Kukjin Kim
2010-04-02  6:48 ` [PATCH 11/16] ARM: SMDKC100: enable i2c support again Marek Szyprowski
2010-05-12  6:06   ` Kukjin Kim
2010-04-02  6:49 ` [PATCH 12/16] ARM: S5PC100: Move sdhci helpers from plat-s5pc1xx to mach-s5pc100 Marek Szyprowski
2010-05-12  7:04   ` Kukjin Kim
2010-05-12  7:24     ` Marek Szyprowski
2010-04-02  6:49 ` [PATCH 13/16] ARM: SMDKC100: enable sdhci support again Marek Szyprowski
2010-05-12  7:05   ` Kukjin Kim
2010-04-02  6:49 ` [PATCH 14/16] ARM: Samsung: Move external interrupts support from plat-s5pc1xx to plat-s5p Marek Szyprowski
2010-04-02  6:49 ` [PATCH 15/16] ARM: S5PC100: Add support for gpio interrupt Marek Szyprowski
2010-04-02  6:49 ` [PATCH 16/16] ARM: remove obsolete plat-s5pc1xx directory Marek Szyprowski

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=20100406155951.GS31126@trinity.fluff.org \
    --to=ben-linux@fluff$(echo .)org \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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