Merge tag 'mac80211-next-for-davem-2017-10-13' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
Johannes Berg says: ==================== Three fixes for the recently added new code: * make "make -s" silent for the certs file (Arnd) * fix missing CONFIG_ in extra certs symbol (Arnd) * use crypto_aead_authsize() to use the proper API and two other changes: * remove a set-but-unused variable * don't track HT *capability* changes, capabilities are supposed to be constant (HT operation changes) ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -23,7 +23,7 @@ cfg80211-y += extra-certs.o
|
||||
endif
|
||||
|
||||
$(obj)/shipped-certs.c: $(wildcard $(srctree)/$(src)/certs/*.x509)
|
||||
@echo " GEN $@"
|
||||
@$(kecho) " GEN $@"
|
||||
@echo '#include "reg.h"' > $@
|
||||
@echo 'const u8 shipped_regdb_certs[] = {' >> $@
|
||||
@for f in $^ ; do hexdump -v -e '1/1 "0x%.2x," "\n"' < $$f >> $@ ; done
|
||||
@@ -32,7 +32,7 @@ $(obj)/shipped-certs.c: $(wildcard $(srctree)/$(src)/certs/*.x509)
|
||||
|
||||
$(obj)/extra-certs.c: $(CONFIG_CFG80211_EXTRA_REGDB_KEYDIR:"%"=%) \
|
||||
$(wildcard $(CONFIG_CFG80211_EXTRA_REGDB_KEYDIR:"%"=%)/*.x509)
|
||||
@echo " GEN $@"
|
||||
@$(kecho) " GEN $@"
|
||||
@echo '#include "reg.h"' > $@
|
||||
@echo 'const u8 extra_regdb_certs[] = {' >> $@
|
||||
@for f in $^ ; do test -f $$f && hexdump -v -e '1/1 "0x%.2x," "\n"' < $$f >> $@ || true ; done
|
||||
|
@@ -464,7 +464,7 @@ bool cfg80211_is_sub_chan(struct cfg80211_chan_def *chandef,
|
||||
struct ieee80211_channel *chan)
|
||||
{
|
||||
int width;
|
||||
u32 cf_offset, freq;
|
||||
u32 freq;
|
||||
|
||||
if (chandef->chan->center_freq == chan->center_freq)
|
||||
return true;
|
||||
@@ -473,8 +473,6 @@ bool cfg80211_is_sub_chan(struct cfg80211_chan_def *chandef,
|
||||
if (width <= 20)
|
||||
return false;
|
||||
|
||||
cf_offset = width / 2 - 10;
|
||||
|
||||
for (freq = chandef->center_freq1 - width / 2 + 10;
|
||||
freq <= chandef->center_freq1 + width / 2 - 10; freq += 20) {
|
||||
if (chan->center_freq == freq)
|
||||
|
@@ -723,7 +723,7 @@ static int __init load_builtin_regdb_keys(void)
|
||||
#ifdef CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS
|
||||
load_keys_from_buffer(shipped_regdb_certs, shipped_regdb_certs_len);
|
||||
#endif
|
||||
#ifdef CFG80211_EXTRA_REGDB_KEYDIR
|
||||
#ifdef CONFIG_CFG80211_EXTRA_REGDB_KEYDIR
|
||||
if (CONFIG_CFG80211_EXTRA_REGDB_KEYDIR[0] != '\0')
|
||||
load_keys_from_buffer(extra_regdb_certs, extra_regdb_certs_len);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user