Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/smanonr..../lib/firmware/ath11k/IPQ8074/hw2.0
File: Notice.txt
================================================================================
[3000] Fix | Delete
[3001] Fix | Delete
File: targaddrs.h
[3002] Fix | Delete
[3003] Fix | Delete
/*
[3004] Fix | Delete
* Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
[3005] Fix | Delete
*
[3006] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3007] Fix | Delete
*
[3008] Fix | Delete
*
[3009] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3010] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3011] Fix | Delete
* above copyright notice and this permission notice appear in all
[3012] Fix | Delete
* copies.
[3013] Fix | Delete
*
[3014] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3015] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3016] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3017] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3018] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3019] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3020] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3021] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3022] Fix | Delete
*/
[3023] Fix | Delete
[3024] Fix | Delete
/*
[3025] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3026] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3027] Fix | Delete
* to the Linux Foundation.
[3028] Fix | Delete
*/
[3029] Fix | Delete
[3030] Fix | Delete
================================================================================
[3031] Fix | Delete
[3032] Fix | Delete
File: wal_dfs.h
[3033] Fix | Delete
[3034] Fix | Delete
/*
[3035] Fix | Delete
*Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
[3036] Fix | Delete
*
[3037] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3038] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3039] Fix | Delete
* above copyright notice and this permission notice appear in all
[3040] Fix | Delete
* copies.
[3041] Fix | Delete
*
[3042] Fix | Delete
* THE SOFTWARE IS PROVIDED ""AS IS"" AND THE AUTHOR DISCLAIMS ALL
[3043] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3044] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3045] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3046] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3047] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3048] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3049] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3050] Fix | Delete
*/
[3051] Fix | Delete
[3052] Fix | Delete
================================================================================
[3053] Fix | Delete
[3054] Fix | Delete
File: wal_dfs.c
[3055] Fix | Delete
[3056] Fix | Delete
/*
[3057] Fix | Delete
* Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
[3058] Fix | Delete
*
[3059] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3060] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3061] Fix | Delete
* above copyright notice and this permission notice appear in all
[3062] Fix | Delete
* copies.
[3063] Fix | Delete
*
[3064] Fix | Delete
* THE SOFTWARE IS PROVIDED ""AS IS"" AND THE AUTHOR DISCLAIMS ALL
[3065] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3066] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3067] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3068] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3069] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3070] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3071] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3072] Fix | Delete
*/
[3073] Fix | Delete
[3074] Fix | Delete
================================================================================
[3075] Fix | Delete
[3076] Fix | Delete
File:aes.c
[3077] Fix | Delete
[3078] Fix | Delete
/*
[3079] Fix | Delete
* For this file, which was received with alternative licensing options for
[3080] Fix | Delete
* distribution, Qualcomm Atheros, Inc. has selected the BSD license.
[3081] Fix | Delete
*/
[3082] Fix | Delete
[3083] Fix | Delete
/*
[3084] Fix | Delete
* AES (Rijndael) cipher
[3085] Fix | Delete
*
[3086] Fix | Delete
* Modifications to public domain implementation:
[3087] Fix | Delete
* - support only 128-bit keys
[3088] Fix | Delete
* - cleanup
[3089] Fix | Delete
* - use C pre-processor to make it easier to change S table access
[3090] Fix | Delete
* - added option (AES_SMALL_TABLES) for reducing code size by about 8 kB at
[3091] Fix | Delete
* cost of reduced throughput (quite small difference on Pentium 4,
[3092] Fix | Delete
* 10-25% when using -O1 or -O2 optimization)
[3093] Fix | Delete
*
[3094] Fix | Delete
* Copyright (c) 2003-2005, Jouni Malinen <jkmaline@cc.hut.fi>
[3095] Fix | Delete
*
[3096] Fix | Delete
* This program is free software; you can redistribute it and/or modify
[3097] Fix | Delete
* it under the terms of the GNU General Public License version 2 as
[3098] Fix | Delete
* published by the Free Software Foundation.
[3099] Fix | Delete
*
[3100] Fix | Delete
* Alternatively, this software may be distributed under the terms of BSD
[3101] Fix | Delete
* license.
[3102] Fix | Delete
*
[3103] Fix | Delete
* See README and COPYING for more details.
[3104] Fix | Delete
*/
[3105] Fix | Delete
[3106] Fix | Delete
/*
[3107] Fix | Delete
* rijndael-alg-fst.c
[3108] Fix | Delete
*
[3109] Fix | Delete
* @version 3.0 (December 2000)
[3110] Fix | Delete
*
[3111] Fix | Delete
* Optimised ANSI C code for the Rijndael cipher (now AES)
[3112] Fix | Delete
*
[3113] Fix | Delete
* @author Vincent Rijmen <vincent.rijmen@esat.kuleuven.ac.be>
[3114] Fix | Delete
* @author Antoon Bosselaers <antoon.bosselaers@esat.kuleuven.ac.be>
[3115] Fix | Delete
* @author Paulo Barreto <paulo.barreto@terra.com.br>
[3116] Fix | Delete
*
[3117] Fix | Delete
* This code is hereby placed in the public domain.
[3118] Fix | Delete
*
[3119] Fix | Delete
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
[3120] Fix | Delete
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
[3121] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
[3122] Fix | Delete
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
[3123] Fix | Delete
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
[3124] Fix | Delete
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
[3125] Fix | Delete
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
[3126] Fix | Delete
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
[3127] Fix | Delete
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
[3128] Fix | Delete
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
[3129] Fix | Delete
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
[3130] Fix | Delete
*/
[3131] Fix | Delete
[3132] Fix | Delete
================================================================================
[3133] Fix | Delete
[3134] Fix | Delete
File: wmi_tlv_helper.c
[3135] Fix | Delete
[3136] Fix | Delete
/*
[3137] Fix | Delete
* Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
[3138] Fix | Delete
*
[3139] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3140] Fix | Delete
*
[3141] Fix | Delete
*
[3142] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3143] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3144] Fix | Delete
* above copyright notice and this permission notice appear in all
[3145] Fix | Delete
* copies.
[3146] Fix | Delete
*
[3147] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3148] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3149] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3150] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3151] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3152] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3153] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3154] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3155] Fix | Delete
*/
[3156] Fix | Delete
[3157] Fix | Delete
/*
[3158] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3159] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3160] Fix | Delete
* to the Linux Foundation.
[3161] Fix | Delete
*/
[3162] Fix | Delete
[3163] Fix | Delete
================================================================================
[3164] Fix | Delete
[3165] Fix | Delete
File: hca_HwComponentBbLithium_dfs_phyerr_tlv.cpp
[3166] Fix | Delete
[3167] Fix | Delete
/*
[3168] Fix | Delete
* Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
[3169] Fix | Delete
*
[3170] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3171] Fix | Delete
*
[3172] Fix | Delete
*
[3173] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3174] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3175] Fix | Delete
* above copyright notice and this permission notice appear in all
[3176] Fix | Delete
* copies.
[3177] Fix | Delete
*
[3178] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3179] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3180] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3181] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3182] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3183] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3184] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3185] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3186] Fix | Delete
*/
[3187] Fix | Delete
[3188] Fix | Delete
/*
[3189] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3190] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3191] Fix | Delete
* to the Linux Foundation.
[3192] Fix | Delete
*/
[3193] Fix | Delete
[3194] Fix | Delete
================================================================================
[3195] Fix | Delete
[3196] Fix | Delete
File: hca_HwComponentBbLithium_dfs_process_phyerr.cpp
[3197] Fix | Delete
[3198] Fix | Delete
/*
[3199] Fix | Delete
* Copyright (c) 2002-2016 The Linux Foundation. All rights reserved.
[3200] Fix | Delete
*
[3201] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3202] Fix | Delete
*
[3203] Fix | Delete
*
[3204] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3205] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3206] Fix | Delete
* above copyright notice and this permission notice appear in all
[3207] Fix | Delete
* copies.
[3208] Fix | Delete
*
[3209] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3210] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3211] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3212] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3213] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3214] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3215] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3216] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3217] Fix | Delete
*/
[3218] Fix | Delete
[3219] Fix | Delete
/*
[3220] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3221] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3222] Fix | Delete
* to the Linux Foundation.
[3223] Fix | Delete
*/
[3224] Fix | Delete
================================================================================
[3225] Fix | Delete
File: hca_HwComponentBbLithium_dfs_process_radarevent.cpp
[3226] Fix | Delete
[3227] Fix | Delete
/*
[3228] Fix | Delete
* Copyright (c) 2002-2016 The Linux Foundation. All rights reserved.
[3229] Fix | Delete
*
[3230] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3231] Fix | Delete
*
[3232] Fix | Delete
*
[3233] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3234] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3235] Fix | Delete
* above copyright notice and this permission notice appear in all
[3236] Fix | Delete
* copies.
[3237] Fix | Delete
*
[3238] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3239] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3240] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3241] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3242] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3243] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3244] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3245] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3246] Fix | Delete
*/
[3247] Fix | Delete
[3248] Fix | Delete
/*
[3249] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3250] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3251] Fix | Delete
* to the Linux Foundation.
[3252] Fix | Delete
*/
[3253] Fix | Delete
[3254] Fix | Delete
================================================================================
[3255] Fix | Delete
[3256] Fix | Delete
File: hca_HwComponentBbLithium_dfs_radar_report.h
[3257] Fix | Delete
/*
[3258] Fix | Delete
* Copyright (c) 2018 The Linux Foundation. All rights reserved.
[3259] Fix | Delete
*
[3260] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3261] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3262] Fix | Delete
* above copyright notice and this permission notice appear in all
[3263] Fix | Delete
* copies.
[3264] Fix | Delete
*
[3265] Fix | Delete
* THE SOFTWARE IS PROVIDED ""AS IS"" AND THE AUTHOR DISCLAIMS ALL
[3266] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3267] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3268] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3269] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3270] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3271] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3272] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3273] Fix | Delete
*/
[3274] Fix | Delete
[3275] Fix | Delete
================================================================================
[3276] Fix | Delete
[3277] Fix | Delete
File: cds_ieee80211_common.h
[3278] Fix | Delete
[3279] Fix | Delete
/*
[3280] Fix | Delete
* Copyright (c) 2011,2014-2015 The Linux Foundation. All rights reserved.
[3281] Fix | Delete
*
[3282] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3283] Fix | Delete
*
[3284] Fix | Delete
*
[3285] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3286] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3287] Fix | Delete
* above copyright notice and this permission notice appear in all
[3288] Fix | Delete
* copies.
[3289] Fix | Delete
*
[3290] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3291] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3292] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3293] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3294] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3295] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3296] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3297] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3298] Fix | Delete
*/
[3299] Fix | Delete
[3300] Fix | Delete
/*
[3301] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3302] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3303] Fix | Delete
* to the Linux Foundation.
[3304] Fix | Delete
*/
[3305] Fix | Delete
[3306] Fix | Delete
================================================================================
[3307] Fix | Delete
[3308] Fix | Delete
File: cds_ieee80211_common_i.h
[3309] Fix | Delete
[3310] Fix | Delete
/*
[3311] Fix | Delete
* Copyright (c) 2013-2015 The Linux Foundation. All rights reserved.
[3312] Fix | Delete
*
[3313] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3314] Fix | Delete
*
[3315] Fix | Delete
*
[3316] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3317] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3318] Fix | Delete
* above copyright notice and this permission notice appear in all
[3319] Fix | Delete
* copies.
[3320] Fix | Delete
*
[3321] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3322] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3323] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3324] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3325] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3326] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3327] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3328] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3329] Fix | Delete
*/
[3330] Fix | Delete
[3331] Fix | Delete
/*
[3332] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3333] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3334] Fix | Delete
* to the Linux Foundation.
[3335] Fix | Delete
*/
[3336] Fix | Delete
[3337] Fix | Delete
================================================================================
[3338] Fix | Delete
[3339] Fix | Delete
File: ath_dfs_structs.h
[3340] Fix | Delete
[3341] Fix | Delete
/*
[3342] Fix | Delete
* Copyright (c) 2011-2016 The Linux Foundation. All rights reserved.
[3343] Fix | Delete
*
[3344] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3345] Fix | Delete
*
[3346] Fix | Delete
*
[3347] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3348] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3349] Fix | Delete
* above copyright notice and this permission notice appear in all
[3350] Fix | Delete
* copies.
[3351] Fix | Delete
*
[3352] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3353] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3354] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3355] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3356] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3357] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3358] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3359] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3360] Fix | Delete
*/
[3361] Fix | Delete
[3362] Fix | Delete
/*
[3363] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3364] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3365] Fix | Delete
* to the Linux Foundation.
[3366] Fix | Delete
*/
[3367] Fix | Delete
[3368] Fix | Delete
================================================================================
[3369] Fix | Delete
[3370] Fix | Delete
File: dfs.h
[3371] Fix | Delete
[3372] Fix | Delete
/*
[3373] Fix | Delete
* Copyright (c) 2005-2016 The Linux Foundation. All rights reserved.
[3374] Fix | Delete
*
[3375] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3376] Fix | Delete
*
[3377] Fix | Delete
*
[3378] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3379] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3380] Fix | Delete
* above copyright notice and this permission notice appear in all
[3381] Fix | Delete
* copies.
[3382] Fix | Delete
*
[3383] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3384] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3385] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3386] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3387] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3388] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3389] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3390] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3391] Fix | Delete
*/
[3392] Fix | Delete
[3393] Fix | Delete
/*
[3394] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3395] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3396] Fix | Delete
* to the Linux Foundation.
[3397] Fix | Delete
*/
[3398] Fix | Delete
[3399] Fix | Delete
================================================================================
[3400] Fix | Delete
[3401] Fix | Delete
File: dfs_interface.h
[3402] Fix | Delete
[3403] Fix | Delete
/*
[3404] Fix | Delete
* Copyright (c) 2011-2016 The Linux Foundation. All rights reserved.
[3405] Fix | Delete
*
[3406] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3407] Fix | Delete
*
[3408] Fix | Delete
*
[3409] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3410] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3411] Fix | Delete
* above copyright notice and this permission notice appear in all
[3412] Fix | Delete
* copies.
[3413] Fix | Delete
*
[3414] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3415] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3416] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3417] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3418] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3419] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3420] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3421] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3422] Fix | Delete
*/
[3423] Fix | Delete
[3424] Fix | Delete
/*
[3425] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3426] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3427] Fix | Delete
* to the Linux Foundation.
[3428] Fix | Delete
*/
[3429] Fix | Delete
[3430] Fix | Delete
================================================================================
[3431] Fix | Delete
[3432] Fix | Delete
File: dfs_ioctl.h
[3433] Fix | Delete
[3434] Fix | Delete
/*
[3435] Fix | Delete
* Copyright (c) 2010-2015 The Linux Foundation. All rights reserved.
[3436] Fix | Delete
*
[3437] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3438] Fix | Delete
*
[3439] Fix | Delete
*
[3440] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3441] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3442] Fix | Delete
* above copyright notice and this permission notice appear in all
[3443] Fix | Delete
* copies.
[3444] Fix | Delete
*
[3445] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3446] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3447] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3448] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3449] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3450] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3451] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3452] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3453] Fix | Delete
*/
[3454] Fix | Delete
[3455] Fix | Delete
/*
[3456] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3457] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3458] Fix | Delete
* to the Linux Foundation.
[3459] Fix | Delete
*/
[3460] Fix | Delete
[3461] Fix | Delete
================================================================================
[3462] Fix | Delete
[3463] Fix | Delete
File: dfs_ioctl_private.h
[3464] Fix | Delete
[3465] Fix | Delete
/*
[3466] Fix | Delete
* Copyright (c) 2010-2015 The Linux Foundation. All rights reserved.
[3467] Fix | Delete
*
[3468] Fix | Delete
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
[3469] Fix | Delete
*
[3470] Fix | Delete
*
[3471] Fix | Delete
* Permission to use, copy, modify, and/or distribute this software for
[3472] Fix | Delete
* any purpose with or without fee is hereby granted, provided that the
[3473] Fix | Delete
* above copyright notice and this permission notice appear in all
[3474] Fix | Delete
* copies.
[3475] Fix | Delete
*
[3476] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
[3477] Fix | Delete
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
[3478] Fix | Delete
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
[3479] Fix | Delete
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
[3480] Fix | Delete
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
[3481] Fix | Delete
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
[3482] Fix | Delete
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[3483] Fix | Delete
* PERFORMANCE OF THIS SOFTWARE.
[3484] Fix | Delete
*/
[3485] Fix | Delete
[3486] Fix | Delete
/*
[3487] Fix | Delete
* This file was originally distributed by Qualcomm Atheros, Inc.
[3488] Fix | Delete
* under proprietary terms before Copyright ownership was assigned
[3489] Fix | Delete
* to the Linux Foundation.
[3490] Fix | Delete
*/
[3491] Fix | Delete
[3492] Fix | Delete
================================================================================
[3493] Fix | Delete
[3494] Fix | Delete
File: qdf_net_types.h
[3495] Fix | Delete
[3496] Fix | Delete
/*
[3497] Fix | Delete
* Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
[3498] Fix | Delete
*
[3499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function