Message ID | 20240327174737.519637-1-krzysztof.kozlowski@linaro.org |
---|---|
State | Accepted |
Commit | f04cff14e2a4fff4068bd25455531e01089103a8 |
Headers | show |
Series | [1/3] spi: loopback-test: drop driver owner assignment | expand |
On Wed, 27 Mar 2024 18:47:35 +0100, Krzysztof Kozlowski wrote: > Core in spi_register_driver() already sets the .owner, so driver > does not need to. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/3] spi: loopback-test: drop driver owner assignment commit: f04cff14e2a4fff4068bd25455531e01089103a8 [2/3] spi: coldfire-qspi: drop driver owner assignment commit: 6c360d3e4962dfb5a525dfef1fe75620f6a29bc8 [3/3] spi: fsl-dspi: drop driver owner assignment commit: a5bef84422eb066ee8fa5c13960657a79b3cc1e7 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/spi-loopback-test.c b/drivers/spi/spi-loopback-test.c index fee8893d2751..31a878d9458d 100644 --- a/drivers/spi/spi-loopback-test.c +++ b/drivers/spi/spi-loopback-test.c @@ -396,7 +396,6 @@ MODULE_DEVICE_TABLE(of, spi_loopback_test_of_match); static struct spi_driver spi_loopback_test_driver = { .driver = { .name = "spi-loopback-test", - .owner = THIS_MODULE, .of_match_table = spi_loopback_test_of_match, }, .probe = spi_loopback_test_probe,
Core in spi_register_driver() already sets the .owner, so driver does not need to. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> --- drivers/spi/spi-loopback-test.c | 1 - 1 file changed, 1 deletion(-)