diff mbox

[U-Boot,v3,5/8] x86: Drop the irq router compatible string

Message ID 1453264352-4209-6-git-send-email-sjg@chromium.org
State Accepted
Commit f8b4e45e313f1f3ab092d1172e5348466c57481c
Delegated to: Bin Meng
Headers show

Commit Message

Simon Glass Jan. 20, 2016, 4:32 a.m. UTC
We use driver model for this now, so we don't need this string.

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

Changes in v3:
- Add new patch to drop the irq router compatible string

Changes in v2: None

 include/fdtdec.h | 1 -
 lib/fdtdec.c     | 1 -
 2 files changed, 2 deletions(-)

Comments

Bin Meng Jan. 20, 2016, 9:28 a.m. UTC | #1
On Wed, Jan 20, 2016 at 12:32 PM, Simon Glass <sjg@chromium.org> wrote:
> We use driver model for this now, so we don't need this string.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
> Changes in v3:
> - Add new patch to drop the irq router compatible string
>
> Changes in v2: None
>
>  include/fdtdec.h | 1 -
>  lib/fdtdec.c     | 1 -
>  2 files changed, 2 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Bin Meng Jan. 21, 2016, 2:06 a.m. UTC | #2
On Wed, Jan 20, 2016 at 5:28 PM, Bin Meng <bmeng.cn@gmail.com> wrote:
> On Wed, Jan 20, 2016 at 12:32 PM, Simon Glass <sjg@chromium.org> wrote:
>> We use driver model for this now, so we don't need this string.
>>
>> Signed-off-by: Simon Glass <sjg@chromium.org>
>> ---
>>
>> Changes in v3:
>> - Add new patch to drop the irq router compatible string
>>
>> Changes in v2: None
>>
>>  include/fdtdec.h | 1 -
>>  lib/fdtdec.c     | 1 -
>>  2 files changed, 2 deletions(-)
>>
>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

applied to u-boot-x86/master, thanks!
diff mbox

Patch

diff --git a/include/fdtdec.h b/include/fdtdec.h
index 27b350e..285da95 100644
--- a/include/fdtdec.h
+++ b/include/fdtdec.h
@@ -164,7 +164,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 b50d105..4b8fc0c 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -69,7 +69,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"),