scsi: ufs: fix arguments order some trace calls
authorSubhash Jadavani <subhashj@codeaurora.org>
Wed, 11 Jan 2017 00:48:25 +0000 (16:48 -0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Thu, 12 Jan 2017 03:34:41 +0000 (22:34 -0500)
commit73eba2be9203c0eef37df6939ebba4d34227f284
treead789fb40795f291297954eca2f22cb15e30dc0a
parent2e48e3491189c40dc9ea9d4a53412d2b66c87555
scsi: ufs: fix arguments order some trace calls

Colin Ian King reported that with commit 7ff5ab473633 ("scsi: ufs: add
tracing support") static analysis is reporting that we may have swapped
arguments on calls to:

    trace_ufshcd_runtime_resume,
    trace_ufshcd_runtime_suspend,
    trace_ufshcd_system_suspend,
    trace_ufshcd_system_resume,
and trace_ufshcd_init

Where:
    hba->uic_link_state is passed to dev_state
    hba->curr_dev_pwr_mode is passed to link_state

This wasn't intentional so it's a bug. This change fixed this bug.

Reported-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Subhash Jadavani <subhashj@codeaurora.org>
Acked-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/ufs/ufshcd.c