Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Copyright (C) 2018 Western Digital Corporation
0004  */
0005 #ifndef UFS_BSG_H
0006 #define UFS_BSG_H
0007 
0008 struct ufs_hba;
0009 
0010 #ifdef CONFIG_SCSI_UFS_BSG
0011 void ufs_bsg_remove(struct ufs_hba *hba);
0012 int ufs_bsg_probe(struct ufs_hba *hba);
0013 #else
0014 static inline void ufs_bsg_remove(struct ufs_hba *hba) {}
0015 static inline int ufs_bsg_probe(struct ufs_hba *hba) {return 0; }
0016 #endif
0017 
0018 #endif /* UFS_BSG_H */