diff options
author | John Garry <john.garry@huawei.com> | 2016-09-06 11:36:22 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-09-14 12:54:18 -0400 |
commit | 514f16e36b8cb7852fc388faeaccea125884a3cd (patch) | |
tree | d08339c7b11d8ed26148861aa42f4ba9b042c4a6 | |
parent | 44c4abe08f224817747795fb8d0677888166e4cd (diff) |
scsi: hisi_sas: remove init_id_frame_v2_hw()
Function config_id_frame_v2_hw() is called twice for each PHY during
initialisation, which is unneeded.
So remove init_id_frame_v2_hw(), which only calls
config_id_frame_v2_hw().
We will keep the call to config_id_frame_v2_hw() in start_phy_v2_hw()
since it will be used for PHY reset functions.
Signed-off-by: John Garry <john.garry@huawei.com>
Signed-off-by: Xiang Chen <chenxiang66@hisilicon.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c index ce84211d8482..5925b93c923c 100644 --- a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c +++ b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | |||
@@ -573,14 +573,6 @@ static void config_id_frame_v2_hw(struct hisi_hba *hisi_hba, int phy_no) | |||
573 | __swab32(identify_buffer[5])); | 573 | __swab32(identify_buffer[5])); |
574 | } | 574 | } |
575 | 575 | ||
576 | static void init_id_frame_v2_hw(struct hisi_hba *hisi_hba) | ||
577 | { | ||
578 | int i; | ||
579 | |||
580 | for (i = 0; i < hisi_hba->n_phy; i++) | ||
581 | config_id_frame_v2_hw(hisi_hba, i); | ||
582 | } | ||
583 | |||
584 | static void setup_itct_v2_hw(struct hisi_hba *hisi_hba, | 576 | static void setup_itct_v2_hw(struct hisi_hba *hisi_hba, |
585 | struct hisi_sas_device *sas_dev) | 577 | struct hisi_sas_device *sas_dev) |
586 | { | 578 | { |
@@ -912,8 +904,6 @@ static int hw_init_v2_hw(struct hisi_hba *hisi_hba) | |||
912 | msleep(100); | 904 | msleep(100); |
913 | init_reg_v2_hw(hisi_hba); | 905 | init_reg_v2_hw(hisi_hba); |
914 | 906 | ||
915 | init_id_frame_v2_hw(hisi_hba); | ||
916 | |||
917 | return 0; | 907 | return 0; |
918 | } | 908 | } |
919 | 909 | ||