diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-03-31 10:44:11 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2024-05-22 08:31:18 -0400 |
commit | bc21020f61f5f93f39eeedc7ae56797e59b98816 (patch) | |
tree | e652096153fb13420a8e5a117ccbd6650d9d80ae | |
parent | e1e4d376836a134465f8f265281e4db5d3bcd9db (diff) | |
download | linux-bc21020f61f5f93f39eeedc7ae56797e59b98816.tar.gz linux-bc21020f61f5f93f39eeedc7ae56797e59b98816.tar.bz2 linux-bc21020f61f5f93f39eeedc7ae56797e59b98816.zip |
fuse: virtio: drop owner assignment
virtio core already sets the .owner, so driver does not need to.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Message-Id: <20240331-module-owner-virtio-v2-24-98f04bfaf46a@linaro.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r-- | fs/fuse/virtio_fs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c index 322af827a232..ca7b64f9c3c7 100644 --- a/fs/fuse/virtio_fs.c +++ b/fs/fuse/virtio_fs.c @@ -1023,7 +1023,6 @@ static const unsigned int feature_table[] = {}; static struct virtio_driver virtio_fs_driver = { .driver.name = KBUILD_MODNAME, - .driver.owner = THIS_MODULE, .id_table = id_table, .feature_table = feature_table, .feature_table_size = ARRAY_SIZE(feature_table), |