scsi: scsi_transport_srp: Don't block target in SRP_PORT_LOST state
[linux-2.6-microblaze.git] / drivers / scsi / ufs / ufs-debugfs.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2020 Intel Corporation
3  */
4
5 #ifndef __UFS_DEBUGFS_H__
6 #define __UFS_DEBUGFS_H__
7
8 struct ufs_hba;
9
10 #ifdef CONFIG_DEBUG_FS
11 void __init ufs_debugfs_init(void);
12 void __exit ufs_debugfs_exit(void);
13 void ufs_debugfs_hba_init(struct ufs_hba *hba);
14 void ufs_debugfs_hba_exit(struct ufs_hba *hba);
15 #else
16 static inline void ufs_debugfs_init(void) {}
17 static inline void ufs_debugfs_exit(void) {}
18 static inline void ufs_debugfs_hba_init(struct ufs_hba *hba) {}
19 static inline void ufs_debugfs_hba_exit(struct ufs_hba *hba) {}
20 #endif
21
22 #endif