From 600e7b7f21cfd179609372bb4f5e3bc5d33d19c2 Mon Sep 17 00:00:00 2001 From: Adrian Warecki Date: Thu, 30 Mar 2023 15:11:01 +0200 Subject: [PATCH] wdt: wdt_intel_adsp: Remove unused variable In the intel_adsp_wdt_isr function was an unused dev_config variable. The variable was removed. This was caught by the sof CI. Signed-off-by: Adrian Warecki --- drivers/watchdog/wdt_intel_adsp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/watchdog/wdt_intel_adsp.c b/drivers/watchdog/wdt_intel_adsp.c index a837f30fb6b..c0e2c0a7d36 100644 --- a/drivers/watchdog/wdt_intel_adsp.c +++ b/drivers/watchdog/wdt_intel_adsp.c @@ -131,7 +131,6 @@ static int intel_adsp_wdt_feed(const struct device *dev, int channel_id) #if WDT_INTEL_ADSP_INTERRUPT_SUPPORT static void intel_adsp_wdt_isr(const struct device *dev) { - const struct intel_adsp_wdt_dev_cfg *const dev_config = dev->config; struct intel_adsp_wdt_dev_data *const dev_data = dev->data; const uint32_t cpu = arch_proc_id(); const uint32_t base = dev_data->core_wdt[cpu];