diff options
| author | Steve Kondik <shade@chemlab.org> | 2013-08-06 22:34:12 -0700 |
|---|---|---|
| committer | Rashed Abdel-Tawab <rashed@linux.com> | 2015-10-17 23:52:43 -0400 |
| commit | 40dbe817386c90c2ad1bd22f48fdb4416e3f3314 (patch) | |
| tree | 7d8019c22325163c12156cc817e598bc7098b18c /src/hardware.c | |
| parent | 463d8060e2bb8bb64df2e0a97523020471f5d3cd (diff) | |
| download | android_hardware_broadcom_libbt-40dbe817386c90c2ad1bd22f48fdb4416e3f3314.tar.gz android_hardware_broadcom_libbt-40dbe817386c90c2ad1bd22f48fdb4416e3f3314.tar.bz2 android_hardware_broadcom_libbt-40dbe817386c90c2ad1bd22f48fdb4416e3f3314.zip | |
libbt: Add support for using two stop bits
* This improves reliability on chips such as BCM4335.
* Also externalize some configuration.
Change-Id: I1271f0c1c3e602c8bfe9f816f57c9cb6add04b3a
Diffstat (limited to 'src/hardware.c')
| -rwxr-xr-x | src/hardware.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/hardware.c b/src/hardware.c index 61d41c4..bcb4809 100755 --- a/src/hardware.c +++ b/src/hardware.c @@ -1612,6 +1612,25 @@ int hw_set_patch_file_name(char *p_conf_name, char *p_conf_value, int param) return 0; } +/******************************************************************************* +** +** Function hw_set_pre_patch_file_name +** +** Description Give the specific firmware pre-patch filename +** +** Returns 0 : Success +** Otherwise : Fail +** +*******************************************************************************/ +int hw_set_pre_patch_file_name(char *p_conf_name, char *p_conf_value, int param) +{ + + strcpy(fw_prepatch_name, p_conf_value); + + return 0; +} + + #if (VENDOR_LIB_RUNTIME_TUNING_ENABLED == TRUE) /******************************************************************************* ** |
