diff options
author | Ben Dooks (Codethink) <ben.dooks@codethink.co.uk> | 2019-12-18 12:31:19 +0000 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2020-01-09 11:30:57 -0700 |
commit | e10b4f6cd89f3ac2044c8f6b4b0ddc1a48f65e09 (patch) | |
tree | 20917331d8296ecab568263f1d5a77f859ba5956 | |
parent | 7a49de995ebbd8711d52d6a3806faa8c5db0eac1 (diff) | |
download | talos-op-linux-e10b4f6cd89f3ac2044c8f6b4b0ddc1a48f65e09.tar.gz talos-op-linux-e10b4f6cd89f3ac2044c8f6b4b0ddc1a48f65e09.zip |
vfio/mdev: make create attribute static
The create attribute is not exported, so make it
static to avoid the following sparse warning:
drivers/vfio/mdev/mdev_sysfs.c:77:1: warning: symbol 'mdev_type_attr_create' was not declared. Should it be static?
Signed-off-by: Ben Dooks (Codethink) <ben.dooks@codethink.co.uk>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
-rw-r--r-- | drivers/vfio/mdev/mdev_sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vfio/mdev/mdev_sysfs.c b/drivers/vfio/mdev/mdev_sysfs.c index 7570c7602ab4..8ad14e5c02bf 100644 --- a/drivers/vfio/mdev/mdev_sysfs.c +++ b/drivers/vfio/mdev/mdev_sysfs.c @@ -74,7 +74,7 @@ static ssize_t create_store(struct kobject *kobj, struct device *dev, return count; } -MDEV_TYPE_ATTR_WO(create); +static MDEV_TYPE_ATTR_WO(create); static void mdev_type_release(struct kobject *kobj) { |