summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authoryang.tian <yang.tian@nxp.com>2019-01-07 16:19:29 +0800
committeryang.tian <yang.tian@nxp.com>2019-01-07 16:22:53 +0800
commit3957eaafc03ac4fd15190f5d6c81e2ddfbb8dc78 (patch)
tree8fa1fb27e1000ea19f4c18fd5f30b22fba447d68 /common
parent9e0a33cacc0a7926d46c0ca184498ae88278816e (diff)
MA-13879-2 Revert adding bootargs for multi-vendor of 8mm
Remove this patch to specify wifi vendor info from uboot, instead we directly add the bootargs in cmdline. Revert commit 9f1a11bdc3fef58bc41bebec858ccab0cd9050e4 MA-13879[wifi concurrency] Add bootargs to set a property for wifi vendor of 8mm Change-Id: Icf7e89df2b4993f6e17a6b7cf38b891591f680d7 Signed-off-by: yang.tian <yang.tian@nxp.com>
Diffstat (limited to 'common')
-rw-r--r--common/image-android.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/common/image-android.c b/common/image-android.c
index a399b1c9e9..71b93da2d5 100644
--- a/common/image-android.c
+++ b/common/image-android.c
@@ -138,14 +138,6 @@ int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
#endif
-#ifdef CONFIG_TARGET_IMX8MM_DDR4_EVK
- sprintf(newbootargs," androidboot.wifivendor=BCM");
- strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
-#elif CONFIG_TARGET_IMX8MM_EVK
- sprintf(newbootargs," androidboot.wifivendor=QCA");
- strncat(commandline, newbootargs, sizeof(commandline) - strlen(commandline));
-#endif
-
/* append soc type into bootargs */
char *soc_type = env_get("soc_type");
if (soc_type) {