1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2020 Broadcom 3 * All rights reserved. 4 */ 5 6 #ifndef _BCMFS_VFIO_H_ 7 #define _BCMFS_VFIO_H_ 8 9 /* Attach the bcmfs device to vfio */ 10 int 11 bcmfs_attach_vfio(struct bcmfs_device *dev); 12 13 /* Release the bcmfs device from vfio */ 14 void 15 bcmfs_release_vfio(struct bcmfs_device *dev); 16 17 #endif /* _BCMFS_VFIO_H_ */ 18