diff options
| author | Bart Van Assche <bvanassche@acm.org> | 2025-10-14 13:00:56 -0700 |
|---|---|---|
| committer | Martin K. Petersen <martin.petersen@oracle.com> | 2025-10-23 22:18:12 -0400 |
| commit | b3b0842bcb0696e25b1977238ce2907a4c02d8c4 (patch) | |
| tree | f0afdb99d70078787aa63ba8fcfa78fe1fa2500a /include/ufs | |
| parent | 7b2c4224faa7bc6cdaf1fb6106ec7b46c63a28cb (diff) | |
| download | linux-b3b0842bcb0696e25b1977238ce2907a4c02d8c4.tar.gz linux-b3b0842bcb0696e25b1977238ce2907a4c02d8c4.zip | |
scsi: ufs: core: Change the type of uic_command::cmd_active
Since uic_command::cmd_active is used as a boolean variable, change its
type from 'int' into 'bool'. No functionality has been changed.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Link: https://patch.msgid.link/20251014200118.3390839-5-bvanassche@acm.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/ufs')
| -rw-r--r-- | include/ufs/ufshcd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ufs/ufshcd.h b/include/ufs/ufshcd.h index 9425cfd9d00eb..4d215a18522ce 100644 --- a/include/ufs/ufshcd.h +++ b/include/ufs/ufshcd.h @@ -78,7 +78,7 @@ struct uic_command { const u32 argument1; u32 argument2; u32 argument3; - int cmd_active; + bool cmd_active; struct completion done; }; |
