From: Simon Glass Date: Sun, 19 Jun 2016 23:33:12 +0000 (-0600) Subject: fdt: Drop unused exynos compatible strings X-Git-Tag: v2016.09-rc1~152 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=da9e0a9bab7ddcf9888a6211b76860155895169d;p=oweals%2Fu-boot.git fdt: Drop unused exynos compatible strings A few drivers have moved to driver model, so we can drop these strings. Signed-off-by: Simon Glass Acked-by: Jaehoon Chung --- diff --git a/include/fdtdec.h b/include/fdtdec.h index 422a155e97..e53d225c97 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -138,9 +138,7 @@ enum fdt_compat_id { 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_FIMD, /* Exynos Display controller */ COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */ - COMPAT_SAMSUNG_EXYNOS5_DP, /* Exynos Display port controller */ COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */ COMPAT_SAMSUNG_EXYNOS_MMC, /* Exynos MMC controller */ COMPAT_MAXIM_MAX77686_PMIC, /* MAX77686 PMIC */ diff --git a/lib/fdtdec.c b/lib/fdtdec.c index b21d615e13..960f9bb8b2 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -43,9 +43,7 @@ static const char * const compat_names[COMPAT_COUNT] = { 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_FIMD, "samsung,exynos-fimd"), COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), - COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"), COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"), COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"),