File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2401,7 +2401,7 @@ static inline int ufshcd_hba_capabilities(struct ufs_hba *hba)
2401
2401
hba -> capabilities &= ~MASK_64_ADDRESSING_SUPPORT ;
2402
2402
2403
2403
/* nutrs and nutmrs are 0 based values */
2404
- hba -> nutrs = (hba -> capabilities & MASK_TRANSFER_REQUESTS_SLOTS ) + 1 ;
2404
+ hba -> nutrs = (hba -> capabilities & MASK_TRANSFER_REQUESTS_SLOTS_SDB ) + 1 ;
2405
2405
hba -> nutmrs =
2406
2406
((hba -> capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS ) >> 16 ) + 1 ;
2407
2407
hba -> reserved_slot = hba -> nutrs - 1 ;
Original file line number Diff line number Diff line change 67
67
68
68
/* Controller capability masks */
69
69
enum {
70
- MASK_TRANSFER_REQUESTS_SLOTS = 0x0000001F ,
70
+ MASK_TRANSFER_REQUESTS_SLOTS_SDB = 0x0000001F ,
71
71
MASK_NUMBER_OUTSTANDING_RTT = 0x0000FF00 ,
72
72
MASK_TASK_MANAGEMENT_REQUEST_SLOTS = 0x00070000 ,
73
73
MASK_EHSLUTRD_SUPPORTED = 0x00400000 ,
You can’t perform that action at this time.
0 commit comments