Merge "fix(ufs): performs unsigned shift for doorbell" into integration

This commit is contained in:
Yann Gautier 2023-09-21 11:48:09 +02:00 committed by TrustedFirmware Code Review
commit aadb759a5a

View file

@ -609,7 +609,7 @@ static void ufs_send_request(int task_tag)
UTRIACR_IATOVAL(0xFF);
mmio_write_32(ufs_params.reg_base + UTRIACR, data);
/* send request */
mmio_setbits_32(ufs_params.reg_base + UTRLDBR, 1 << slot);
mmio_setbits_32(ufs_params.reg_base + UTRLDBR, 1U << slot);
}
static int ufs_check_resp(utp_utrd_t *utrd, int trans_type, unsigned int timeout_ms)