* [PATCH 0/3] irqchip: Drop unused module aliases
@ 2025-10-13 9:54 Johan Hovold
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Johan Hovold @ 2025-10-13 9:54 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
Andrew Lunn, Gregory Clement, Sebastian Hesselbarth, linux-kernel,
Johan Hovold
When fixing some platform driver issues I noticed that these drivers had
unused platform module aliases which should be removed.
Johan
Johan Hovold (3):
irqchip/meson-gpio: Drop unused module alias
irqchip/mvebu-pic: Drop unused module alias
irqchip/ts4800: Drop unused module alias
drivers/irqchip/irq-meson-gpio.c | 1 -
drivers/irqchip/irq-mvebu-pic.c | 2 --
drivers/irqchip/irq-ts4800.c | 1 -
3 files changed, 4 deletions(-)
--
2.49.1
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias
2025-10-13 9:54 [PATCH 0/3] irqchip: Drop unused module aliases Johan Hovold
@ 2025-10-13 9:54 ` Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
` (2 more replies)
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
2025-10-13 9:54 ` [PATCH 3/3] irqchip/ts4800: " Johan Hovold
2 siblings, 3 replies; 14+ messages in thread
From: Johan Hovold @ 2025-10-13 9:54 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
Andrew Lunn, Gregory Clement, Sebastian Hesselbarth, linux-kernel,
Johan Hovold
The driver has never supported anything but OF probing so drop the
unused platform alias that was erroneously added by commit a947aa00edd4
("irqchip/meson-gpio: Make it possible to build as a module").
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/irqchip/irq-meson-gpio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-meson-gpio.c b/drivers/irqchip/irq-meson-gpio.c
index 7d177626d64b..8e84724e8d28 100644
--- a/drivers/irqchip/irq-meson-gpio.c
+++ b/drivers/irqchip/irq-meson-gpio.c
@@ -636,4 +636,3 @@ IRQCHIP_PLATFORM_DRIVER_END(meson_gpio_intc)
MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
MODULE_DESCRIPTION("Meson GPIO Interrupt Multiplexer driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:meson-gpio-intc");
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 2/3] irqchip/mvebu-pic: Drop unused module alias
2025-10-13 9:54 [PATCH 0/3] irqchip: Drop unused module aliases Johan Hovold
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
@ 2025-10-13 9:54 ` Johan Hovold
2025-10-13 12:19 ` Andrew Lunn
` (3 more replies)
2025-10-13 9:54 ` [PATCH 3/3] irqchip/ts4800: " Johan Hovold
2 siblings, 4 replies; 14+ messages in thread
From: Johan Hovold @ 2025-10-13 9:54 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
Andrew Lunn, Gregory Clement, Sebastian Hesselbarth, linux-kernel,
Johan Hovold
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/irqchip/irq-mvebu-pic.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/irqchip/irq-mvebu-pic.c b/drivers/irqchip/irq-mvebu-pic.c
index cd8b73482b9f..10b85128183a 100644
--- a/drivers/irqchip/irq-mvebu-pic.c
+++ b/drivers/irqchip/irq-mvebu-pic.c
@@ -195,5 +195,3 @@ MODULE_AUTHOR("Yehuda Yitschak <yehuday@marvell.com>");
MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
MODULE_DESCRIPTION("Marvell Armada 7K/8K PIC driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:mvebu_pic");
-
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 3/3] irqchip/ts4800: Drop unused module alias
2025-10-13 9:54 [PATCH 0/3] irqchip: Drop unused module aliases Johan Hovold
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
@ 2025-10-13 9:54 ` Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
` (2 more replies)
2 siblings, 3 replies; 14+ messages in thread
From: Johan Hovold @ 2025-10-13 9:54 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
Andrew Lunn, Gregory Clement, Sebastian Hesselbarth, linux-kernel,
Johan Hovold
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/irqchip/irq-ts4800.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-ts4800.c b/drivers/irqchip/irq-ts4800.c
index 1e236d5b7516..2e4013c6834d 100644
--- a/drivers/irqchip/irq-ts4800.c
+++ b/drivers/irqchip/irq-ts4800.c
@@ -165,4 +165,3 @@ module_platform_driver(ts4800_ic_driver);
MODULE_AUTHOR("Damien Riegel <damien.riegel@savoirfairelinux.com>");
MODULE_DESCRIPTION("Multiplexed-IRQs driver for TS-4800's FPGA");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:ts4800_irqc");
--
2.49.1
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 2/3] irqchip/mvebu-pic: Drop unused module alias
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
@ 2025-10-13 12:19 ` Andrew Lunn
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
` (2 subsequent siblings)
3 siblings, 0 replies; 14+ messages in thread
From: Andrew Lunn @ 2025-10-13 12:19 UTC (permalink / raw)
To: Johan Hovold
Cc: Thomas Gleixner, Neil Armstrong, Kevin Hilman, Jerome Brunet,
Martin Blumenstingl, Gregory Clement, Sebastian Hesselbarth,
linux-kernel
On Mon, Oct 13, 2025 at 11:54:27AM +0200, Johan Hovold wrote:
> The driver has never supported anything but OF probing so drop the
> unused platform alias.
>
> Signed-off-by: Johan Hovold <johan@kernel.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew
^ permalink raw reply [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/ts4800: Drop unused module alias
2025-10-13 9:54 ` [PATCH 3/3] irqchip/ts4800: " Johan Hovold
@ 2025-10-16 9:51 ` tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 9:51 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Johan Hovold, Thomas Gleixner, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: be4130bcbff173d74bd0b431a711e971b7533c28
Gitweb: https://git.kernel.org/tip/be4130bcbff173d74bd0b431a711e971b7533c28
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:28 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 11:34:24 +02:00
irqchip/ts4800: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/irqchip/irq-ts4800.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-ts4800.c b/drivers/irqchip/irq-ts4800.c
index 1e236d5..2e4013c 100644
--- a/drivers/irqchip/irq-ts4800.c
+++ b/drivers/irqchip/irq-ts4800.c
@@ -165,4 +165,3 @@ module_platform_driver(ts4800_ic_driver);
MODULE_AUTHOR("Damien Riegel <damien.riegel@savoirfairelinux.com>");
MODULE_DESCRIPTION("Multiplexed-IRQs driver for TS-4800's FPGA");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:ts4800_irqc");
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/mvebu-pic: Drop unused module alias
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
2025-10-13 12:19 ` Andrew Lunn
@ 2025-10-16 9:51 ` tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
3 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 9:51 UTC (permalink / raw)
To: linux-tip-commits
Cc: Johan Hovold, Thomas Gleixner, Andrew Lunn, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: 312e6313019df8738dbff9be03f87343d00bb519
Gitweb: https://git.kernel.org/tip/312e6313019df8738dbff9be03f87343d00bb519
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:27 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 11:34:24 +02:00
irqchip/mvebu-pic: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
---
drivers/irqchip/irq-mvebu-pic.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/irqchip/irq-mvebu-pic.c b/drivers/irqchip/irq-mvebu-pic.c
index cd8b734..10b8512 100644
--- a/drivers/irqchip/irq-mvebu-pic.c
+++ b/drivers/irqchip/irq-mvebu-pic.c
@@ -195,5 +195,3 @@ MODULE_AUTHOR("Yehuda Yitschak <yehuday@marvell.com>");
MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
MODULE_DESCRIPTION("Marvell Armada 7K/8K PIC driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:mvebu_pic");
-
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/meson-gpio: Drop unused module alias
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
@ 2025-10-16 9:51 ` tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 9:51 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Johan Hovold, Thomas Gleixner, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: 4ef1e024f757c2cbd22d295209ed73180d84f5da
Gitweb: https://git.kernel.org/tip/4ef1e024f757c2cbd22d295209ed73180d84f5da
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:26 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 11:34:24 +02:00
irqchip/meson-gpio: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias that was erroneously added by commit a947aa00edd4
("irqchip/meson-gpio: Make it possible to build as a module").
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/irqchip/irq-meson-gpio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-meson-gpio.c b/drivers/irqchip/irq-meson-gpio.c
index 09ebf1d..6c5e2ff 100644
--- a/drivers/irqchip/irq-meson-gpio.c
+++ b/drivers/irqchip/irq-meson-gpio.c
@@ -637,4 +637,3 @@ IRQCHIP_PLATFORM_DRIVER_END(meson_gpio_intc)
MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
MODULE_DESCRIPTION("Meson GPIO Interrupt Multiplexer driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:meson-gpio-intc");
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/ts4800: Drop unused module alias
2025-10-13 9:54 ` [PATCH 3/3] irqchip/ts4800: " Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
@ 2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 15:46 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Johan Hovold, Thomas Gleixner, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: 87a2a7341f669a6c2a7a9cd356429758ac23d848
Gitweb: https://git.kernel.org/tip/87a2a7341f669a6c2a7a9cd356429758ac23d848
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:28 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 17:26:35 +02:00
irqchip/ts4800: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/irqchip/irq-ts4800.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-ts4800.c b/drivers/irqchip/irq-ts4800.c
index 1e236d5..2e4013c 100644
--- a/drivers/irqchip/irq-ts4800.c
+++ b/drivers/irqchip/irq-ts4800.c
@@ -165,4 +165,3 @@ module_platform_driver(ts4800_ic_driver);
MODULE_AUTHOR("Damien Riegel <damien.riegel@savoirfairelinux.com>");
MODULE_DESCRIPTION("Multiplexed-IRQs driver for TS-4800's FPGA");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:ts4800_irqc");
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/mvebu-pic: Drop unused module alias
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
2025-10-13 12:19 ` Andrew Lunn
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
@ 2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
3 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 15:46 UTC (permalink / raw)
To: linux-tip-commits
Cc: Johan Hovold, Thomas Gleixner, Andrew Lunn, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: 8330a8c2ae819ec454d9715f3d413cbb0699e7ae
Gitweb: https://git.kernel.org/tip/8330a8c2ae819ec454d9715f3d413cbb0699e7ae
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:27 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 17:26:34 +02:00
irqchip/mvebu-pic: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
---
drivers/irqchip/irq-mvebu-pic.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/irqchip/irq-mvebu-pic.c b/drivers/irqchip/irq-mvebu-pic.c
index cd8b734..10b8512 100644
--- a/drivers/irqchip/irq-mvebu-pic.c
+++ b/drivers/irqchip/irq-mvebu-pic.c
@@ -195,5 +195,3 @@ MODULE_AUTHOR("Yehuda Yitschak <yehuday@marvell.com>");
MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
MODULE_DESCRIPTION("Marvell Armada 7K/8K PIC driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:mvebu_pic");
-
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/meson-gpio: Drop unused module alias
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
@ 2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 15:46 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Johan Hovold, Thomas Gleixner, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: f0954a66c9742e0801063f390995d2ea537ef085
Gitweb: https://git.kernel.org/tip/f0954a66c9742e0801063f390995d2ea537ef085
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:26 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 17:26:34 +02:00
irqchip/meson-gpio: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias that was erroneously added by commit a947aa00edd4
("irqchip/meson-gpio: Make it possible to build as a module").
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/irqchip/irq-meson-gpio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-meson-gpio.c b/drivers/irqchip/irq-meson-gpio.c
index 09ebf1d..6c5e2ff 100644
--- a/drivers/irqchip/irq-meson-gpio.c
+++ b/drivers/irqchip/irq-meson-gpio.c
@@ -637,4 +637,3 @@ IRQCHIP_PLATFORM_DRIVER_END(meson_gpio_intc)
MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
MODULE_DESCRIPTION("Meson GPIO Interrupt Multiplexer driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:meson-gpio-intc");
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/ts4800: Drop unused module alias
2025-10-13 9:54 ` [PATCH 3/3] irqchip/ts4800: " Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
@ 2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 19:01 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Johan Hovold, Thomas Gleixner, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: dcc31768ffc1571407cf9b52f96f0505b0573450
Gitweb: https://git.kernel.org/tip/dcc31768ffc1571407cf9b52f96f0505b0573450
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:28 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 18:17:28 +02:00
irqchip/ts4800: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/irqchip/irq-ts4800.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-ts4800.c b/drivers/irqchip/irq-ts4800.c
index 1e236d5..2e4013c 100644
--- a/drivers/irqchip/irq-ts4800.c
+++ b/drivers/irqchip/irq-ts4800.c
@@ -165,4 +165,3 @@ module_platform_driver(ts4800_ic_driver);
MODULE_AUTHOR("Damien Riegel <damien.riegel@savoirfairelinux.com>");
MODULE_DESCRIPTION("Multiplexed-IRQs driver for TS-4800's FPGA");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:ts4800_irqc");
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/mvebu-pic: Drop unused module alias
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
` (2 preceding siblings ...)
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
@ 2025-10-16 19:01 ` tip-bot2 for Johan Hovold
3 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 19:01 UTC (permalink / raw)
To: linux-tip-commits
Cc: Johan Hovold, Thomas Gleixner, Andrew Lunn, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: b03127a4e778435bd90794e654834f94860c80e9
Gitweb: https://git.kernel.org/tip/b03127a4e778435bd90794e654834f94860c80e9
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:27 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 18:17:28 +02:00
irqchip/mvebu-pic: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
---
drivers/irqchip/irq-mvebu-pic.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/irqchip/irq-mvebu-pic.c b/drivers/irqchip/irq-mvebu-pic.c
index cd8b734..10b8512 100644
--- a/drivers/irqchip/irq-mvebu-pic.c
+++ b/drivers/irqchip/irq-mvebu-pic.c
@@ -195,5 +195,3 @@ MODULE_AUTHOR("Yehuda Yitschak <yehuday@marvell.com>");
MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
MODULE_DESCRIPTION("Marvell Armada 7K/8K PIC driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:mvebu_pic");
-
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [tip: irq/drivers] irqchip/meson-gpio: Drop unused module alias
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
@ 2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2 siblings, 0 replies; 14+ messages in thread
From: tip-bot2 for Johan Hovold @ 2025-10-16 19:01 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Johan Hovold, Thomas Gleixner, x86, linux-kernel
The following commit has been merged into the irq/drivers branch of tip:
Commit-ID: 867c6aa283fbc1e9eded7d4f2cd7b3f9f4cb5e9e
Gitweb: https://git.kernel.org/tip/867c6aa283fbc1e9eded7d4f2cd7b3f9f4cb5e9e
Author: Johan Hovold <johan@kernel.org>
AuthorDate: Mon, 13 Oct 2025 11:54:26 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Thu, 16 Oct 2025 18:17:27 +02:00
irqchip/meson-gpio: Drop unused module alias
The driver has never supported anything but OF probing so drop the
unused platform alias that was erroneously added by commit a947aa00edd4
("irqchip/meson-gpio: Make it possible to build as a module").
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/irqchip/irq-meson-gpio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/irqchip/irq-meson-gpio.c b/drivers/irqchip/irq-meson-gpio.c
index 09ebf1d..6c5e2ff 100644
--- a/drivers/irqchip/irq-meson-gpio.c
+++ b/drivers/irqchip/irq-meson-gpio.c
@@ -637,4 +637,3 @@ IRQCHIP_PLATFORM_DRIVER_END(meson_gpio_intc)
MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
MODULE_DESCRIPTION("Meson GPIO Interrupt Multiplexer driver");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:meson-gpio-intc");
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2025-10-16 19:01 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-13 9:54 [PATCH 0/3] irqchip: Drop unused module aliases Johan Hovold
2025-10-13 9:54 ` [PATCH 1/3] irqchip/meson-gpio: Drop unused module alias Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2025-10-13 9:54 ` [PATCH 2/3] irqchip/mvebu-pic: " Johan Hovold
2025-10-13 12:19 ` Andrew Lunn
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
2025-10-13 9:54 ` [PATCH 3/3] irqchip/ts4800: " Johan Hovold
2025-10-16 9:51 ` [tip: irq/drivers] " tip-bot2 for Johan Hovold
2025-10-16 15:46 ` tip-bot2 for Johan Hovold
2025-10-16 19:01 ` tip-bot2 for Johan Hovold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox