1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2018 Western Digital Corporation
8 #include <linux/bsg-lib.h>
10 #include <scsi/scsi_host.h>
15 #ifdef CONFIG_SCSI_UFS_BSG
16 void ufs_bsg_remove(struct ufs_hba *hba);
17 int ufs_bsg_probe(struct ufs_hba *hba);
19 static inline void ufs_bsg_remove(struct ufs_hba *hba) {}
20 static inline int ufs_bsg_probe(struct ufs_hba *hba) {return 0; }
23 #endif /* UFS_BSG_H */