Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70e9e311 authored by Can Guo's avatar Can Guo
Browse files

scsi: ufs: fix a quirk macro definition error



This change fixes the macro definition error of quirk
UFS_DEVICE_QUIRK_HS_G1_TO_HS_G3_SWITCH as it is conflicting with previous
quirk UFS_DEVICE_QUIRK_HOST_PA_SAVECONFIGTIME.

Change-Id: I5198c29ad7cfd2e841b122f9c4f3a4980dadfbda
Signed-off-by: default avatarCan Guo <cang@codeaurora.org>
parent b4067bf9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014-2017, The Linux Foundation. All rights reserved.
 * Copyright (c) 2014-2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -138,6 +138,6 @@ struct ufs_dev_fix {
 * HS-G1 to HS-G2 followed by HS-G2 to HS-G3. Enabling this quirk for such
 * device would apply this 2 steps gear switch workaround.
 */
#define UFS_DEVICE_QUIRK_HS_G1_TO_HS_G3_SWITCH (1 << 8)
#define UFS_DEVICE_QUIRK_HS_G1_TO_HS_G3_SWITCH	(1 << 9)

#endif /* UFS_QUIRKS_H_ */