ANDROID: vendor_hooks: update android_vh_ufs_send_uic_command

This updates the vendor hook `android_vh_ufs_send_uic_command` due to
the function parameter changes from the upstream commit 35d11ec239
("scsi: ufs: ufshcd: Constify pointed data").

Fixes: 35d11ec239 ("scsi: ufs: ufshcd: Constify pointed data")
Signed-off-by: Will McVicker <willmcvicker@google.com>
Change-Id: I6d1559bf74982cdf0a4ef4b28618265ba40dbab4
This commit is contained in:
Will McVicker 2022-08-23 21:53:15 +00:00 committed by William McVicker
parent aa98435df3
commit c57fe7391e

View File

@ -37,7 +37,8 @@ DECLARE_HOOK(android_vh_ufs_compl_command,
struct uic_command;
DECLARE_HOOK(android_vh_ufs_send_uic_command,
TP_PROTO(struct ufs_hba *hba, struct uic_command *ucmd, int str_t),
TP_PROTO(struct ufs_hba *hba, const struct uic_command *ucmd,
int str_t),
TP_ARGS(hba, ucmd, str_t));
DECLARE_HOOK(android_vh_ufs_send_tm_command,