diff options
| author | Bagas Sanjaya <bagasdotme@gmail.com> | 2025-07-02 10:58:23 +0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-08-15 16:39:08 +0200 |
| commit | 0b2d98f0ed99eb12f4cb86d7e2df16adccb8ff86 (patch) | |
| tree | e3155baef5a7e0da813d7a35137da6d6128d8ad9 /drivers/scsi | |
| parent | 69da69e08a5d94b577549d72ffc504904d3bfa98 (diff) | |
| download | linux-0b2d98f0ed99eb12f4cb86d7e2df16adccb8ff86.tar.gz linux-0b2d98f0ed99eb12f4cb86d7e2df16adccb8ff86.tar.bz2 linux-0b2d98f0ed99eb12f4cb86d7e2df16adccb8ff86.zip | |
scsi: core: Fix kernel doc for scsi_track_queue_full()
[ Upstream commit 6070bd558aee1eb5114e1676165bf0ccaa08240a ]
Sphinx reports indentation warning on scsi_track_queue_full() return
values:
Documentation/driver-api/scsi:101: ./drivers/scsi/scsi.c:247: ERROR: Unexpected indentation. [docutils]
Fix the warning by making the return values listing a bullet list.
Fixes: eb44820c28bc ("[SCSI] Add Documentation and integrate into docbook build")
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Link: https://lore.kernel.org/r/20250702035822.18072-2-bagasdotme@gmail.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/scsi')
| -rw-r--r-- | drivers/scsi/scsi.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 518a252eb6aa..c2527dd289d9 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c @@ -242,9 +242,11 @@ EXPORT_SYMBOL(scsi_change_queue_depth); * specific SCSI device to determine if and when there is a * need to adjust the queue depth on the device. * - * Returns: 0 - No change needed, >0 - Adjust queue depth to this new depth, - * -1 - Drop back to untagged operation using host->cmd_per_lun - * as the untagged command depth + * Returns: + * * 0 - No change needed + * * >0 - Adjust queue depth to this new depth, + * * -1 - Drop back to untagged operation using host->cmd_per_lun as the + * untagged command depth * * Lock Status: None held on entry * |
