diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-03-31 10:43:49 +0200 |
---|---|---|
committer | Michael S. Tsirkin <[email protected]> | 2024-05-22 08:31:16 -0400 |
commit | 7cc5d6caaf403c730ea1aac0b708dea47758877d (patch) | |
tree | 9bd72c71522775117e6b1d800af4ca5e7ac69511 | |
parent | c578123e63da31d9d3876c33a8e3415597288e7d (diff) |
virtio: balloon: drop owner assignment
virtio core already sets the .owner, so driver does not need to.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
-rw-r--r-- | drivers/virtio/virtio_balloon.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index b09e8e3c62e5..c0a63638f95e 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c @@ -1181,7 +1181,6 @@ static struct virtio_driver virtio_balloon_driver = { .feature_table = features, .feature_table_size = ARRAY_SIZE(features), .driver.name = KBUILD_MODNAME, - .driver.owner = THIS_MODULE, .id_table = id_table, .validate = virtballoon_validate, .probe = virtballoon_probe, |