diff options
author | John Garry <john.garry@huawei.com> | 2016-09-06 11:36:23 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-09-14 12:54:18 -0400 |
commit | 8583d3b5b09f08a5b970489cc34a268f500a4a3d (patch) | |
tree | 3e3b23480ebc7291bbf6a714e60d435a7ef350bf | |
parent | 514f16e36b8cb7852fc388faeaccea125884a3cd (diff) |
scsi: hisi_sas: remove init_id_frame_v1_hw()
Function config_id_frame_v1_hw() is called twice for each PHY during
initialisation, which is unneeded.
So remove init_id_frame_v1_hw(), which only calls
config_id_frame_v1_hw().
We will keep the call to config_id_frame_v1_hw() in start_phy_v1_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_v1_hw.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c index c030df08596e..c0ac49d8bc8d 100644 --- a/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c +++ b/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c | |||
@@ -501,14 +501,6 @@ static void config_id_frame_v1_hw(struct hisi_hba *hisi_hba, int phy_no) | |||
501 | __swab32(identify_buffer[5])); | 501 | __swab32(identify_buffer[5])); |
502 | } | 502 | } |
503 | 503 | ||
504 | static void init_id_frame_v1_hw(struct hisi_hba *hisi_hba) | ||
505 | { | ||
506 | int i; | ||
507 | |||
508 | for (i = 0; i < hisi_hba->n_phy; i++) | ||
509 | config_id_frame_v1_hw(hisi_hba, i); | ||
510 | } | ||
511 | |||
512 | static void setup_itct_v1_hw(struct hisi_hba *hisi_hba, | 504 | static void setup_itct_v1_hw(struct hisi_hba *hisi_hba, |
513 | struct hisi_sas_device *sas_dev) | 505 | struct hisi_sas_device *sas_dev) |
514 | { | 506 | { |
@@ -774,8 +766,6 @@ static int hw_init_v1_hw(struct hisi_hba *hisi_hba) | |||
774 | msleep(100); | 766 | msleep(100); |
775 | init_reg_v1_hw(hisi_hba); | 767 | init_reg_v1_hw(hisi_hba); |
776 | 768 | ||
777 | init_id_frame_v1_hw(hisi_hba); | ||
778 | |||
779 | return 0; | 769 | return 0; |
780 | } | 770 | } |
781 | 771 | ||