diff options
| author | Thirumalai Pachamuthu <tpachamu@qti.qualcomm.com> | 2013-10-10 04:21:42 +0530 |
|---|---|---|
| committer | Madan Mohan Koyyalamudi <mkoyyala@qca.qualcomm.com> | 2013-10-23 20:04:53 -0700 |
| commit | 261ea7a9839eef6fde4d01b8c6e8ce3aadbd1943 (patch) | |
| tree | 8eb60c090ed2857f19e4561b18bc8e6d74c52eef | |
| parent | 2fa9676b02da1aed14fd6547d2974a2b479ceae9 (diff) | |
cld: BMI: Download and execute otp
The otp.bin is always gets downloaded
and executed for CLD.
This step actually read and program the target
with the correct data from the eeprom.
Also this includes olpc cal data which needs to
be available for right operation of the targer.
CRs-Fixed: 556351
Change-Id: I8340b95d8d17a5355b23ad112dead36eee4adaf8
| -rw-r--r-- | CORE/SERVICES/BMI/ol_fw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SERVICES/BMI/ol_fw.c b/CORE/SERVICES/BMI/ol_fw.c index c5ed54886949..25f6728ba541 100644 --- a/CORE/SERVICES/BMI/ol_fw.c +++ b/CORE/SERVICES/BMI/ol_fw.c @@ -721,7 +721,7 @@ int ol_download_firmware(struct ol_softc *scn) address = BMI_SEGMENTED_WRITE_ADDR; printk("%s: Using 0x%x for the remainder of init\n", __func__, address); - if ( ((scn->target_version != AR6320_REV1_VERSION) || (scn->target_version != AR6320_REV1_1_VERSION)) && scn->enablesinglebinary == FALSE ) { + if ( scn->enablesinglebinary == FALSE ) { status = ol_transfer_bin_file(scn, ATH_OTP_FILE, address, TRUE); if (status == EOK) { |
