aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSujit Reddy Thumma <sthumma@codeaurora.org>2014-07-23 02:31:11 -0400
committerChristoph Hellwig <hch@lst.de>2014-07-25 17:17:06 -0400
commit7289f983548b24822971d7c3c2997734ff07b2f3 (patch)
treed5cbaa66b412675bcdff0f6a25f3a6b7b92a591b
parente090cc92761006c0787c2d2d4ff20dd6f52826d0 (diff)
scsi: ufs: make undeclared functions static
Make undeclared functions static to suppress warnings from sparse tool. Signed-off-by: Sujit Reddy Thumma <sthumma@codeaurora.org> Signed-off-by: Dolev Raviv <draviv@codeaurora.org> Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--drivers/scsi/ufs/ufshcd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index d41233914336..a450407a56ee 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -1314,7 +1314,7 @@ out:
1314 * The buf_len parameter will contain, on return, the length parameter 1314 * The buf_len parameter will contain, on return, the length parameter
1315 * received on the response. 1315 * received on the response.
1316 */ 1316 */
1317int ufshcd_query_descriptor(struct ufs_hba *hba, 1317static int ufshcd_query_descriptor(struct ufs_hba *hba,
1318 enum query_opcode opcode, enum desc_idn idn, u8 index, 1318 enum query_opcode opcode, enum desc_idn idn, u8 index,
1319 u8 selector, u8 *desc_buf, int *buf_len) 1319 u8 selector, u8 *desc_buf, int *buf_len)
1320{ 1320{
@@ -2018,7 +2018,8 @@ static int ufshcd_slave_alloc(struct scsi_device *sdev)
2018 * Change queue depth according to the reason and make sure 2018 * Change queue depth according to the reason and make sure
2019 * the max. limits are not crossed. 2019 * the max. limits are not crossed.
2020 */ 2020 */
2021int ufshcd_change_queue_depth(struct scsi_device *sdev, int depth, int reason) 2021static int ufshcd_change_queue_depth(struct scsi_device *sdev,
2022 int depth, int reason)
2022{ 2023{
2023 struct ufs_hba *hba = shost_priv(sdev->host); 2024 struct ufs_hba *hba = shost_priv(sdev->host);
2024 2025