[tip: irq/urgent] irqchip/davinci: Remove leftover header

tip-bot2 for Bartosz Golaszewski posted 1 patch 8 months, 1 week ago
include/linux/irqchip/irq-davinci-aintc.h | 27 +----------------------
1 file changed, 27 deletions(-)
delete mode 100644 include/linux/irqchip/irq-davinci-aintc.h
[tip: irq/urgent] irqchip/davinci: Remove leftover header
Posted by tip-bot2 for Bartosz Golaszewski 8 months, 1 week ago
The following commit has been merged into the irq/urgent branch of tip:

Commit-ID:     75f8c87555e6ddeff2c49bd47460a71a940edc48
Gitweb:        https://git.kernel.org/tip/75f8c87555e6ddeff2c49bd47460a71a940edc48
Author:        Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
AuthorDate:    Thu, 06 Mar 2025 09:45:52 +01:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Mon, 07 Apr 2025 09:23:55 +02:00

irqchip/davinci: Remove leftover header

Commit fa8dede4d0a0 ("irqchip: remove davinci aintc driver") removed the
davinci aintc driver but left behind the associated header. Remove it
now.

Fixes: fa8dede4d0a0 ("irqchip: remove davinci aintc driver")
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/all/20250306084552.15894-1-brgl@bgdev.pl

---
 include/linux/irqchip/irq-davinci-aintc.h | 27 +----------------------
 1 file changed, 27 deletions(-)
 delete mode 100644 include/linux/irqchip/irq-davinci-aintc.h

diff --git a/include/linux/irqchip/irq-davinci-aintc.h b/include/linux/irqchip/irq-davinci-aintc.h
deleted file mode 100644
index ea4e087..0000000
--- a/include/linux/irqchip/irq-davinci-aintc.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * Copyright (C) 2019 Texas Instruments
- */
-
-#ifndef _LINUX_IRQ_DAVINCI_AINTC_
-#define _LINUX_IRQ_DAVINCI_AINTC_
-
-#include <linux/ioport.h>
-
-/**
- * struct davinci_aintc_config - configuration data for davinci-aintc driver.
- *
- * @reg: register range to map
- * @num_irqs: number of HW interrupts supported by the controller
- * @prios: an array of size num_irqs containing priority settings for
- *         each interrupt
- */
-struct davinci_aintc_config {
-	struct resource reg;
-	unsigned int num_irqs;
-	u8 *prios;
-};
-
-void davinci_aintc_init(const struct davinci_aintc_config *config);
-
-#endif /* _LINUX_IRQ_DAVINCI_AINTC_ */