[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/2] watchdog: CONFIG_WDT_IB6300ESB -> CONFIG_WDT_I6300ESB
From: |
Cornelia Huck |
Subject: |
[PATCH 1/2] watchdog: CONFIG_WDT_IB6300ESB -> CONFIG_WDT_I6300ESB |
Date: |
Tue, 10 Jun 2025 16:32:58 +0200 |
There's no ib6300esb device; let's correct the typo in the config option.
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
hw/watchdog/Kconfig | 2 +-
hw/watchdog/meson.build | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/watchdog/Kconfig b/hw/watchdog/Kconfig
index 861fd003341d..1003939e1f33 100644
--- a/hw/watchdog/Kconfig
+++ b/hw/watchdog/Kconfig
@@ -2,7 +2,7 @@ config CMSDK_APB_WATCHDOG
bool
select PTIMER
-config WDT_IB6300ESB
+config WDT_I6300ESB
bool
default y if PCI_DEVICES
depends on PCI
diff --git a/hw/watchdog/meson.build b/hw/watchdog/meson.build
index 15370565bd4d..dafb85dfffc3 100644
--- a/hw/watchdog/meson.build
+++ b/hw/watchdog/meson.build
@@ -1,7 +1,7 @@
system_ss.add(files('watchdog.c'))
system_ss.add(when: 'CONFIG_ALLWINNER_WDT', if_true: files('allwinner-wdt.c'))
system_ss.add(when: 'CONFIG_CMSDK_APB_WATCHDOG', if_true:
files('cmsdk-apb-watchdog.c'))
-system_ss.add(when: 'CONFIG_WDT_IB6300ESB', if_true: files('wdt_i6300esb.c'))
+system_ss.add(when: 'CONFIG_WDT_I6300ESB', if_true: files('wdt_i6300esb.c'))
system_ss.add(when: 'CONFIG_WDT_IB700', if_true: files('wdt_ib700.c'))
system_ss.add(when: 'CONFIG_WDT_DIAG288', if_true: files('wdt_diag288.c'))
system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('wdt_aspeed.c'))
--
2.49.0