Skip to content

Commit 8b4e546

Browse files
committed
RDKB-59986: append a copy of the ISC license
Reason for change: append a copy of the ISC license Risks: Low Priority: P1
1 parent 2ae4e40 commit 8b4e546

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

LICENSE

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,4 +227,12 @@ Redistribution and use in source and binary forms, with or without modification,
227227
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
228228

229229
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
230+
-----------------------------------------------------------------------------
231+
232+
ISC License
233+
234+
Copyright <YEAR> <COPYRIGHT HOLDER>
235+
236+
Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
230237

238+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

NOTICE

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,9 @@ Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
3636
Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
3737
Copyright (c) 2016-2017, Jouni Malinen <[email protected]>
3838
Licensed under the BSD-3 License
39+
40+
Copyright (c) 2007, 2008 Johannes Berg
41+
Copyright (c) 2007 Andy Lutomirski
42+
Copyright (c) 2007 Mike Kershaw
43+
Copyright (c) 2008-2009 Luis R. Rodriguez
44+
Licensed under the ISC license

platform/raspberry-pi/platform_pi.c

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ Copyright (c) 2005-2006, Devicescape Software, Inc.
2525
Copyright (c) 2007, Johannes Berg [email protected]
2626
Copyright (c) 2009-2010, Atheros Communications
2727
Licensed under the BSD-3 License
28+
Also credit:
29+
Copyright (c) 2007, 2008 Johannes Berg
30+
Copyright (c) 2007 Andy Lutomirski
31+
Copyright (c) 2007 Mike Kershaw
32+
Copyright (c) 2008-2009 Luis R. Rodriguez
33+
Licensed under the ISC license
2834
*/
2935

3036
#include <stddef.h>
@@ -728,12 +734,12 @@ static int get_sta_stats_handler(struct nl_msg *msg, void *arg)
728734

729735
if (stats[NL80211_STA_INFO_TX_DURATION]) {
730736
wifi_hal_dbg_print("%s:%d tx duration: %d\n", __func__, __LINE__, nla_get_u32(stats[NL80211_STA_INFO_TX_DURATION]));
731-
dev->cli_tx_duration = nla_get_u32(stats[NL80211_STA_INFO_TX_DURATION]);
737+
//dev->cli_tx_duration = nla_get_u32(stats[NL80211_STA_INFO_TX_DURATION]);
732738
}
733739

734740
if (stats[NL80211_STA_INFO_RX_DURATION]) {
735741
wifi_hal_dbg_print("%s:%d rx duration: %d\n", __func__, __LINE__, nla_get_u32(stats[NL80211_STA_INFO_RX_DURATION]));
736-
dev->cli_rx_duration = nla_get_u32(stats[NL80211_STA_INFO_RX_DURATION]);
742+
//dev->cli_rx_duration = nla_get_u32(stats[NL80211_STA_INFO_RX_DURATION]);
737743
}
738744

739745
if (stats[NL80211_STA_INFO_STA_FLAGS]) {
@@ -986,4 +992,4 @@ UINT wifi_freq_to_op_class(UINT freq)
986992
}
987993

988994
return op_class;
989-
}
995+
}

0 commit comments

Comments
 (0)