Message ID | 20241111065425.103645-1-jiapeng.chong@linux.alibaba.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c6d0529fb70c14e3ea67ac70211ed4359bbac99d |
Headers | show |
Series | [-next] spi: apple: Remove unnecessary .owner for apple_spi_driver | expand |
On Mon, 11 Nov 2024 14:54:25 +0800, Jiapeng Chong wrote: > Remove .owner field if calls are used which set it automatically. > > ./drivers/spi/spi-apple.c:522:3-8: No need to set .owner here. The core will do it. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: apple: Remove unnecessary .owner for apple_spi_driver commit: c6d0529fb70c14e3ea67ac70211ed4359bbac99d 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-apple.c b/drivers/spi/spi-apple.c index 1ce91cea89be..d4b126c8701a 100644 --- a/drivers/spi/spi-apple.c +++ b/drivers/spi/spi-apple.c @@ -519,7 +519,6 @@ static struct platform_driver apple_spi_driver = { .probe = apple_spi_probe, .driver = { .name = "apple-spi", - .owner = THIS_MODULE, .of_match_table = apple_spi_of_match, }, };
Remove .owner field if calls are used which set it automatically. ./drivers/spi/spi-apple.c:522:3-8: No need to set .owner here. The core will do it. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=11799 Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> --- drivers/spi/spi-apple.c | 1 - 1 file changed, 1 deletion(-)