diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-03-31 10:44:03 +0200 |
---|---|---|
committer | Michael S. Tsirkin <[email protected]> | 2024-05-22 08:31:17 -0400 |
commit | 606f1f9f3d94fe2e42a2e18638eed818d89e1da3 (patch) | |
tree | 21ce3677a691e836aa4e524d5345037b591f9ca3 | |
parent | 7249ad5a71bf36cc324b5c6af7dc932e31c3adfd (diff) |
net: caif: virtio: 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/net/caif/caif_virtio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/caif/caif_virtio.c b/drivers/net/caif/caif_virtio.c index 0b0f234b0b50..99d984851fef 100644 --- a/drivers/net/caif/caif_virtio.c +++ b/drivers/net/caif/caif_virtio.c @@ -782,7 +782,6 @@ static struct virtio_driver caif_virtio_driver = { .feature_table = features, .feature_table_size = ARRAY_SIZE(features), .driver.name = KBUILD_MODNAME, - .driver.owner = THIS_MODULE, .id_table = id_table, .probe = cfv_probe, .remove = cfv_remove, |