All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 10/11] fdt: samsung: Drop unused fdt_compat_id values
Date: Mon, 17 Dec 2018 08:54:31 +0100	[thread overview]
Message-ID: <20181217085431.3950f49b@jawa> (raw)
In-Reply-To: <20181217023638.39803-11-sjg@chromium.org>

On Sun, 16 Dec 2018 19:36:37 -0700
Simon Glass <sjg@chromium.org> wrote:

> This enum still exists but we can shrink it a little based on recent
> driver-model conversions with samsung. Update it to remove unused
> items.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
> 
> Changes in v2: None
> 
>  include/fdtdec.h | 6 ------
>  lib/fdtdec.c     | 6 ------
>  2 files changed, 12 deletions(-)
> 
> diff --git a/include/fdtdec.h b/include/fdtdec.h
> index f1bcbf837ff..de7dd63b5a4 100644
> --- a/include/fdtdec.h
> +++ b/include/fdtdec.h
> @@ -133,18 +133,12 @@ enum fdt_compat_id {
>  					/* Tegra210 XUSB pad
> controller */ COMPAT_SMSC_LAN9215,		/* SMSC 10/100
> Ethernet LAN9215 */ COMPAT_SAMSUNG_EXYNOS5_SROMC,	/* Exynos5
> SROMC */
> -	COMPAT_SAMSUNG_S3C2440_I2C,	/* Exynos I2C Controller
> */
> -	COMPAT_SAMSUNG_EXYNOS5_SOUND,	/* Exynos Sound */
> -	COMPAT_WOLFSON_WM8994_CODEC,	/* Wolfson WM8994 Sound
> Codec */ COMPAT_SAMSUNG_EXYNOS_USB_PHY,	/* Exynos phy
> controller for usb2.0 */ COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos
> phy controller for usb3.0 */ COMPAT_SAMSUNG_EXYNOS_TMU,	/*
> Exynos TMU */ COMPAT_SAMSUNG_EXYNOS_MIPI_DSI,	/* Exynos mipi
> dsi */ COMPAT_SAMSUNG_EXYNOS_DWMMC,	/* Exynos DWMMC controller
> */
> -	COMPAT_SAMSUNG_EXYNOS_MMC,	/* Exynos MMC controller */
>  	COMPAT_GENERIC_SPI_FLASH,	/* Generic SPI Flash chip */
> -	COMPAT_MAXIM_98095_CODEC,	/* MAX98095 Codec */
> -	COMPAT_SAMSUNG_EXYNOS5_I2C,	/* Exynos5 High Speed I2C
> Controller */ COMPAT_SAMSUNG_EXYNOS_SYSMMU,	/* Exynos sysmmu */
>  	COMPAT_INTEL_MICROCODE,		/* Intel microcode
> update */ COMPAT_AMS_AS3722,		/* AMS AS3722 PMIC */
> diff --git a/lib/fdtdec.c b/lib/fdtdec.c
> index 6f8ec0dbed7..18b8bf81955 100644
> --- a/lib/fdtdec.c
> +++ b/lib/fdtdec.c
> @@ -40,18 +40,12 @@ static const char * const
> compat_names[COMPAT_COUNT] = { COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL,
> "nvidia,tegra210-xusb-padctl"), COMPAT(SMSC_LAN9215, "smsc,lan9215"),
>  	COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
> -	COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
> -	COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
> -	COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
>  	COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
>  	COMPAT(SAMSUNG_EXYNOS5_USB3_PHY,
> "samsung,exynos5250-usb3-phy"), COMPAT(SAMSUNG_EXYNOS_TMU,
> "samsung,exynos-tmu"), COMPAT(SAMSUNG_EXYNOS_MIPI_DSI,
> "samsung,exynos-mipi-dsi"), COMPAT(SAMSUNG_EXYNOS_DWMMC,
> "samsung,exynos-dwmmc"),
> -	COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
>  	COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
> -	COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
> -	COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
>  	COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
>  	COMPAT(INTEL_MICROCODE, "intel,microcode"),
>  	COMPAT(AMS_AS3722, "ams,as3722"),

Reviewed-by: Lukasz Majewski <lukma@denx.de>


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20181217/14c1907b/attachment.sig>

  reply	other threads:[~2018-12-17  7:54 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20181217023702epcas3p1209a5ebb75a242bf9fa217a39bc13fb8@epcas3p1.samsung.com>
2018-12-17  2:36 ` [U-Boot] [PATCH v2 00/11] samsung: Tidy up sound, DM_MMC drop dead code Simon Glass
2018-12-17  2:36   ` [U-Boot] [PATCH v2 01/11] odroid: Resync defconfigs Simon Glass
2018-12-17  7:46     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 02/11] Convert CONFIG_BOARD_TYPES to Kconfig Simon Glass
2018-12-17  7:46     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 03/11] exynos: Drop duplicate 'model' line Simon Glass
2018-12-17  7:47     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 04/11] exynos: Convert to use CONFIG_BLK Simon Glass
2018-12-17  7:48     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 05/11] sound: Add a driver for max98088 Simon Glass
2018-12-17  8:00     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 06/11] spring: Update sound to use max98088 codec Simon Glass
2018-12-17  8:00     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 07/11] spring: Update flashmap details Simon Glass
2018-12-17  8:01     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 08/11] samsung: Drop board_enable_audio_codec() Simon Glass
2018-12-17  7:53     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 09/11] samsung: mmc: Drop old MMC init code Simon Glass
2018-12-17  7:54     ` Lukasz Majewski
2018-12-17  2:36   ` [U-Boot] [PATCH v2 10/11] fdt: samsung: Drop unused fdt_compat_id values Simon Glass
2018-12-17  7:54     ` Lukasz Majewski [this message]
2018-12-17  2:36   ` [U-Boot] [PATCH v2 11/11] fdt: tegra: Drop COMPAT_AMS_AS3722 Simon Glass
2018-12-17  7:54     ` Lukasz Majewski
2018-12-21  0:40   ` [U-Boot] [PATCH v2 00/11] samsung: Tidy up sound, DM_MMC drop dead code Minkyu Kang
2018-12-21 17:35     ` Simon Glass
2019-01-16 21:42       ` Simon Glass
2019-01-17  1:09         ` Minkyu Kang

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=20181217085431.3950f49b@jawa \
    --to=lukma@denx.de \
    --cc=u-boot@lists.denx.de \
    /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.