Add the feature-disable property.
It will be parsed when brcmfmac is probed.
If someone want to disable some features by default, it's possible to
use this property.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
(cherry picked from commit
4a12cde7ed3e962f146676cb51fb3a6bc6380bd1)
Change-Id: Ie06f2e896d37dd75657779dedb68f7c683cb6d53
if (bus_type != BRCMF_BUSTYPE_SDIO)
return;
+ if (of_property_read_u32(np, "brcm,feature-disable", &val) == 0) {
+ settings->feature_disable |= val;
+ brcmf_info("Disabled feature 0x%x\n", settings->feature_disable);
+ }
+
if (of_property_read_u32(np, "brcm,drive-strength", &val) == 0)
sdio->drive_strength = val;