mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The definition of mdev_bus_register() and mdev_bus_unregister() have been
removed since commit 6c7f98b334
("vfio/mdev: Remove vfio_mdev.c"). So,
let's remove the unused declarations.
Signed-off-by: Zhang Zekun <zhangzekun11@huawei.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Link: https://lore.kernel.org/r/20240812120823.10968-1-zhangzekun11@huawei.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
30 lines
952 B
C
30 lines
952 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Mediated device internal definitions
|
|
*
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
* Author: Neo Jia <cjia@nvidia.com>
|
|
* Kirti Wankhede <kwankhede@nvidia.com>
|
|
*/
|
|
|
|
#ifndef MDEV_PRIVATE_H
|
|
#define MDEV_PRIVATE_H
|
|
|
|
extern const struct bus_type mdev_bus_type;
|
|
extern const struct attribute_group *mdev_device_groups[];
|
|
|
|
#define to_mdev_type_attr(_attr) \
|
|
container_of(_attr, struct mdev_type_attribute, attr)
|
|
#define to_mdev_type(_kobj) \
|
|
container_of(_kobj, struct mdev_type, kobj)
|
|
|
|
int parent_create_sysfs_files(struct mdev_parent *parent);
|
|
void parent_remove_sysfs_files(struct mdev_parent *parent);
|
|
|
|
int mdev_create_sysfs_files(struct mdev_device *mdev);
|
|
void mdev_remove_sysfs_files(struct mdev_device *mdev);
|
|
|
|
int mdev_device_create(struct mdev_type *kobj, const guid_t *uuid);
|
|
int mdev_device_remove(struct mdev_device *dev);
|
|
|
|
#endif /* MDEV_PRIVATE_H */
|