diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-03-31 11:43:54 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2024-05-22 15:31:16 +0300 |
commit | 1e0d03b7d0215bfebc3b77c704b6b818389c93f5 (patch) | |
tree | 43ff42942153141b6ccc522c199ea327da313e9c /drivers/bluetooth | |
parent | bdb8e2f8e8b8d22714aee2be004d1bb78c024261 (diff) | |
download | linux-1e0d03b7d0215bfebc3b77c704b6b818389c93f5.tar.xz |
bluetooth: 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-7-98f04bfaf46a@linaro.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/virtio_bt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/bluetooth/virtio_bt.c b/drivers/bluetooth/virtio_bt.c index 2ac70b560c46..463b49ca2492 100644 --- a/drivers/bluetooth/virtio_bt.c +++ b/drivers/bluetooth/virtio_bt.c @@ -417,7 +417,6 @@ static const unsigned int virtbt_features[] = { static struct virtio_driver virtbt_driver = { .driver.name = KBUILD_MODNAME, - .driver.owner = THIS_MODULE, .feature_table = virtbt_features, .feature_table_size = ARRAY_SIZE(virtbt_features), .id_table = virtbt_table, |