From: Simon Glass Date: Wed, 20 Jan 2016 04:32:29 +0000 (-0700) Subject: x86: Drop the irq router compatible string X-Git-Tag: v2016.03-rc1~136 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f8b4e45e313f1f3ab092d1172e5348466c57481c;p=u-boot x86: Drop the irq router compatible string We use driver model for this now, so we don't need this string. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/include/fdtdec.h b/include/fdtdec.h index 25e98c9c9e..dd82916dc0 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -163,7 +163,6 @@ enum fdt_compat_id { COMPAT_INTEL_X86_PINCTRL, /* Intel ICH7/9 pin control */ COMPAT_SOCIONEXT_XHCI, /* Socionext UniPhier xHCI */ COMPAT_INTEL_PCH, /* Intel PCH */ - COMPAT_INTEL_IRQ_ROUTER, /* Intel Interrupt Router */ COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */ COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */ COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */ diff --git a/lib/fdtdec.c b/lib/fdtdec.c index d56e1b11f0..0eb56af4d6 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -68,7 +68,6 @@ static const char * const compat_names[COMPAT_COUNT] = { COMPAT(INTEL_X86_PINCTRL, "intel,x86-pinctrl"), COMPAT(SOCIONEXT_XHCI, "socionext,uniphier-xhci"), COMPAT(COMPAT_INTEL_PCH, "intel,bd82x6x"), - COMPAT(COMPAT_INTEL_IRQ_ROUTER, "intel,irq-router"), COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"), COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"), COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),