diff options
author | Josh Triplett <josh@joshtriplett.org> | 2013-12-23 21:55:03 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-01-03 20:36:56 (GMT) |
commit | 4ad77ac92d533af14e6eab0d8bd020e4dd731a0f (patch) | |
tree | 89c5efcf0a555829ece4d4e912c2c2f331ec7d95 /drivers | |
parent | cca213fd6bdfab7badfae3d8ca32b6af96202cb5 (diff) | |
download | linux-4ad77ac92d533af14e6eab0d8bd020e4dd731a0f.tar.xz |
net: wireless: brcm80211: Drop debug version with build date/time
The kernel already has this information, and individual drivers
shouldn't duplicate that. This also eliminates the use of __DATE__ and
__TIME__, which make the build non-deterministic.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c b/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c index 548dbb5..7b6bdd1 100644 --- a/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c +++ b/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c @@ -32,15 +32,8 @@ #define BRCMF_DEFAULT_SCAN_UNASSOC_TIME 40 #define BRCMF_DEFAULT_PACKET_FILTER "100 0 0 0 0x01 0x00" -#ifdef DEBUG -static const char brcmf_version[] = - "Dongle Host Driver, version " BRCMF_VERSION_STR "\nCompiled on " - __DATE__ " at " __TIME__; -#else static const char brcmf_version[] = "Dongle Host Driver, version " BRCMF_VERSION_STR; -#endif - bool brcmf_c_prec_enq(struct device *dev, struct pktq *q, struct sk_buff *pkt, int prec) |