lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 22 Apr 2022 08:59:43 +0300 From: Kalle Valo <kvalo@...nel.org> To: Hermes Zhang <chenhui.zhang@...s.com> Cc: Arend van Spriel <aspriel@...il.com>, Franky Lin <franky.lin@...adcom.com>, Hante Meuleman <hante.meuleman@...adcom.com>, "David S. Miller" <davem@...emloft.net>, "Jakub Kicinski" <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>, <kernel@...s.com>, Hermes Zhang <chenhuiz@...s.com>, <linux-wireless@...r.kernel.org>, <brcm80211-dev-list.pdl@...adcom.com>, <SHA-cyfmac-dev-list@...ineon.com>, <netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org> Subject: Re: [PATCH v2] brcmfmac: of: introduce new property to allow disable PNO Hermes Zhang <chenhui.zhang@...s.com> writes: > From: Hermes Zhang <chenhuiz@...s.com> > > The PNO feature need to be disable for some scenario in different > product. This commit introduce a new property to allow the > product-specific toggling of this feature. "some scenario"? That's not really helpful. > Signed-off-by: Hermes Zhang <chenhuiz@...s.com> > --- > > Notes: > Change property name to brcm,pno-disable > > drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c > index 8623bde5eb70..121a195e4054 100644 > --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c > +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c > @@ -11,6 +11,7 @@ > #include "core.h" > #include "common.h" > #include "of.h" > +#include "feature.h" > > static int brcmf_of_get_country_codes(struct device *dev, > struct brcmf_mp_device *settings) > @@ -102,6 +103,9 @@ void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type, > if (bus_type != BRCMF_BUSTYPE_SDIO) > return; > > + if (of_find_property(np, "brcm,pno-disable", NULL)) > + settings->feature_disable |= BIT(BRCMF_FEAT_PNO); Is this DT property documented and acked by the Device Tree maintainers? AFAIK DT is not supposed to be used as a software configuration database. -- https://patchwork.kernel.org/project/linux-wireless/list/ https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
Powered by blists - more mailing lists